ImageMagick.DrawablePath.IDrawable C# (CSharp) 메소드

IDrawable() 개인적인 메소드

Draws this instance with the drawing wand.
private IDrawable ( IDrawingWand wand ) : void
wand IDrawingWand The want to draw on.
리턴 void
    void IDrawable.Draw(IDrawingWand wand)
    {
      if (wand == null)
        return;

      wand.PathStart();
      foreach (IPath path in _Paths)
        path.Draw(wand);
      wand.PathFinish();
    }
  }