ImageMagick.PointInfoCollection.PointInfoCollection C# (CSharp) Метод

PointInfoCollection() публичный Метод

public PointInfoCollection ( IList coordinates ) : System.Collections.Generic
coordinates IList
Результат System.Collections.Generic
    public PointInfoCollection(IList<PointD> coordinates)
      : this(coordinates.Count)
    {
      for (int i = 0; i < coordinates.Count; i++)
      {
        PointD point = coordinates[i];
        _NativeInstance.Set(i, point.X, point.Y);
      }
    }

Same methods

PointInfoCollection::PointInfoCollection ( int count ) : System.Collections.Generic