ImageMagick.MagickScript.ExecutePathLineToHorizontalAbs C# (CSharp) Méthode

ExecutePathLineToHorizontalAbs() private méthode

private ExecutePathLineToHorizontalAbs ( XmlElement element, Collection paths ) : void
element XmlElement
paths Collection
Résultat void
    private void ExecutePathLineToHorizontalAbs(XmlElement element, Collection<IPath> paths)
    {
      double x_ = Variables.GetValue<double>(element, "x");
      paths.Add(new PathLineToHorizontalAbs(x_));
    }
    private void ExecutePathLineToHorizontalRel(XmlElement element, Collection<IPath> paths)
MagickScript