Vector3fCompareTo Method |
Component evaluation priority is first X, then Y, then Z.
Namespace: Rhino.Geometry
public int CompareTo( Vector3f other )
Public Function CompareTo ( other As Vector3f ) As Integer
0: if this is identical to other
-1: if this.X < other.X
-1: if this.X == other.X and this.Y < other.Y
-1: if this.X == other.X and this.Y == other.Y and this.Z < other.Z
+1: otherwise.