ImageMagick.MagickScript.ExecuteDrawableRectangle C# (CSharp) Method

ExecuteDrawableRectangle() private method

private ExecuteDrawableRectangle ( XmlElement element, Collection drawables ) : void
element System.Xml.XmlElement
drawables Collection
return void
    private void ExecuteDrawableRectangle(XmlElement element, Collection<IDrawable> drawables)
    {
      double upperLeftX_ = Variables.GetValue<double>(element, "upperLeftX");
      double upperLeftY_ = Variables.GetValue<double>(element, "upperLeftY");
      double lowerRightX_ = Variables.GetValue<double>(element, "lowerRightX");
      double lowerRightY_ = Variables.GetValue<double>(element, "lowerRightY");
      drawables.Add(new DrawableRectangle(upperLeftX_, upperLeftY_, lowerRightX_, lowerRightY_));
    }
    private void ExecuteDrawableRotation(XmlElement element, Collection<IDrawable> drawables)
MagickScript