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

ToClipperPath() public method

public ToClipperPath ( ) : System.Collections.Generic.List
return System.Collections.Generic.List
            public Path ToClipperPath()
            {
                var result = new Path(Points.Count);

                foreach (var point in Points)
                {
                    result.Add(new IntPoint(point.X, point.Y));
                }

                return result;
            }