ImageMagick.DrawableBezier.IDrawable C# (CSharp) Method

IDrawable() private method

Draws this instance with the drawing wand.
private IDrawable ( IDrawingWand wand ) : void
wand IDrawingWand The want to draw on.
return void
    void IDrawable.Draw(IDrawingWand wand)
    {
      if (wand != null)
        wand.Bezier(_Coordinates.ToList());
    }
  }