Aka_s_Vayne.Logic.AJSGeometry.Polygon.IsOutside C# (CSharp) Method

IsOutside() public method

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