Aka_s_Vayne.Logic.AJSGeometry.Polygon.IsOutside C# (CSharp) Méthode

IsOutside() public méthode

public IsOutside ( System.Vector2 point ) : bool
point System.Vector2
Résultat bool
            public bool IsOutside(Vector2 point)
            {
                var p = new IntPoint(point.X, point.Y);
                return Clipper.PointInPolygon(p, ToClipperPath()) != 1;
            }