MathUtilitiesLessThanOrClose(Double, Double) Method

LessThanOrClose - Returns whether or not the first double is less than or close to the second double. That is, whether or not the first is strictly less than or within epsilon of the other number.

Definition

Namespace: Avalonia.Utilities
Assembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public static bool LessThanOrClose(
	double value1,
	double value2
)

Parameters

value1  Double
The first double to compare.
value2  Double
The second double to compare.

Return Value

Boolean

See Also