RhinoCommon API
RhinoMathIsValidSingle Method |
Determines whether a Single value is valid within the RhinoCommon context.
Rhino does not use Single.NaN by convention, so this test evaluates to true if:
x is not equal to RhinoMath.UnsetValue,
System.Single.IsNaN(x) evaluates to false
System.Single.IsInfinity(x) evaluates to false
Namespace: Rhino
Assembly: RhinoCommon (in RhinoCommon.dll)
Since: 5.0

public static bool IsValidSingle( float x )
Public Shared Function IsValidSingle ( x As Single ) As Boolean
Parameters
- x
- Type: SystemSingle
Single number to test for validity.
Return Value
Type: Booleantrue if the number if valid, false if the number is NaN, Infinity or Unset.
