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();
    }
  }