コード例 #1
0
ファイル: S2Shape.cs プロジェクト: alas/s2geometry
        public int CompareTo(Edge other)
        {
            var c = V0.CompareTo(other.V0);

            if (c != 0)
            {
                return(c);
            }

            return(V1.CompareTo(other.V1));
        }