MathUtilitiesGetMinMaxFromDelta Method
Gets the minimum and maximum from the specified number and the difference with that number.
Namespace: Avalonia.UtilitiesAssembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public static (double min, double max) GetMinMaxFromDelta(
double initialValue,
double delta
)
Public Shared Function GetMinMaxFromDelta (
initialValue As Double,
delta As Double
) As (min As Double, max As Double)
static member GetMinMaxFromDelta :
initialValue : float *
delta : float -> ValueTuple<float, float>
- initialValue Double
- The initial value to use.
- delta Double
- The difference for initialValue.
ValueTupleDouble,
DoubleA tuple containing the minimum and maximum of the specified number and the difference with that number.