| Vector2FIsNumericallyZero Property |
Returns a value indicating whether this vector has zero size (the length is numerically
equal to 0).
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public bool IsNumericallyZero { get; }
Public ReadOnly Property IsNumericallyZero As Boolean
Get
public:
property bool IsNumericallyZero {
bool get ();
}
member IsNumericallyZero : bool with get
Property Value
Type:
Boolean if this vector is numerically zero; otherwise,
.
Remarks
The length of this vector is compared to 0 using the default tolerance value (see
EpsilonF).
See Also