RhinoCommon API
Vector2fCompareTo Method |
Namespace: Rhino.Geometry
Assembly: RhinoCommon (in RhinoCommon.dll)
Since: 5.0
public int CompareTo( Vector2f other )
Public Function CompareTo ( other As Vector2f ) As Integer
Parameters
- other
- Type: Rhino.GeometryVector2f
The other Vector2f to use in comparison.
Return Value
Type: Int320: if this is identical to other
-1: if this.X < other.X
-1: if this.X == other.X and this.Y < other.Y
+1: otherwise.