MathUtilitiesGetMinMaxFromDelta 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) Version: 11.3.999
public static (double min, double max) GetMinMaxFromDelta(
	double initialValue,
	double delta
)

Parameters

initialValue  Double
The initial value to use.
delta  Double
The difference for initialValue.

Return Value

ValueTupleDouble, Double
A tuple containing the minimum and maximum of the specified number and the difference with that number.

See Also