MathUtilitiesLessThan(Single, Single) Method
LessThan - Returns whether or not the first float is less than the second float.
That is, whether or not the first is strictly less than *and* not within epsilon of
the other number.
Namespace: Avalonia.UtilitiesAssembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public static bool LessThan(
float value1,
float value2
)
Public Shared Function LessThan (
value1 As Single,
value2 As Single
) As Boolean
static member LessThan :
value1 : float32 *
value2 : float32 -> bool
- value1 Single
- The first single float to compare.
- value2 Single
- The second single float to compare.
Boolean