| NumericIsGreater Method (Double, Double) |
Determines whether a value is greater than another value (regarding the tolerance
EpsilonD).
Namespace: DigitalRune.MathematicsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public static bool IsGreater(
double value1,
double value2
)
Public Shared Function IsGreater (
value1 As Double,
value2 As Double
) As Boolean
public:
static bool IsGreater(
double value1,
double value2
)
static member IsGreater :
value1 : float *
value2 : float -> bool
Parameters
- value1
- Type: SystemDouble
The first value. - value2
- Type: SystemDouble
The second 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,
.
See Also