asmrobot
2019-10-29 f25f89101a98ad815c0ae2d25e1a8dc35d53a5dd
src/RichCreator.Utility/Utilitys/GeometryHelper.cs
@@ -145,7 +145,7 @@
            ZTPoint p1;
            int n = polygon.Length;
            p1 = polygon[0];
            if (point == p1)
            if (point .Equals( p1))
            {
                return Intersection.Tangent;
            }
@@ -153,7 +153,7 @@
            for (i = 1; i <= n; i++)
            {
                ZTPoint p2 = polygon[i % n];
                if (point == p2)
                if (point .Equals( p2))
                {
                    return Intersection.Tangent;
                }