ImageMagick.MagickScript.CreatePointDs C# (CSharp) Method

CreatePointDs() private method

private CreatePointDs ( XmlElement element ) : Collection
element System.Xml.XmlElement
return Collection
    private Collection<PointD> CreatePointDs(XmlElement element)
    {
      Collection<PointD> collection = new Collection<PointD>();
      foreach (XmlElement elem in element.SelectNodes("*"))
      {
        collection.Add(CreatePointD(elem));
      }
      return collection;
    }
  }
MagickScript