GetMinMaxFromDelta Method
Gets the minimum and maximum from the specified number and the difference with that number.
Definition
Namespace: Avalonia.Utilities
Assembly: Avalonia.Base (in Avalonia.Base.dll)
- C#
- VB
- F#
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>
Parameters
Return Value
ValueTuple(Double, Double)
A tuple containing the minimum and maximum of the specified number and the difference with that number.