AkaCore.AkaLib.AGeometry.Polygon.ToClipperPath C# (CSharp) 메소드

ToClipperPath() 공개 메소드

public ToClipperPath ( ) : System.Collections.Generic.List
리턴 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;
            }