| Point3dGreaterThanOrEqual Operator  | 
 
            Determines whether the first specified point comes after
            (has superior sorting value than) the second point, or it is equal to it.
            
Coordinates evaluation priority is first X, then Y, then Z.
 
    Namespace: 
   Rhino.Geometry
    Assembly:
   RhinoCommon (in RhinoCommon.dll)
Since: 5.0
 Syntax
Syntaxpublic static bool operator >=(
	Point3d a,
	Point3d b
)
Public Shared Operator >= ( 
	a As Point3d,
	b As Point3d
) As Boolean
Parameters
- a
- Type: Rhino.GeometryPoint3d
 The first point.
- b
- Type: Rhino.GeometryPoint3d
 The second point.
Return Value
Type: 
Booleantrue if a.X is larger than b.X,
            or a.X == b.X and a.Y is larger than b.Y,
            or a.X == b.X and a.Y == b.Y and a.Z >= b.Z;
            otherwise, false.
 See Also
See Also