Click or drag to resize
DigitalRuneNumericIsLess Method (Single, Single, Single)
Determines whether a value is less than another value (regarding the specified tolerance).

Namespace: DigitalRune.Mathematics
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
public static bool IsLess(
	float value1,
	float value2,
	float epsilon
)

Parameters

value1
Type: SystemSingle
The first value.
value2
Type: SystemSingle
The second value.
epsilon
Type: SystemSingle
The tolerance value.

Return Value

Type: Boolean
if value1 < value2 and the difference between value1 and value2 is greater than or equal to the epsilon tolerance; otherwise, .
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionepsilon is negative or 0.
See Also