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;
            }