ImageMagick.PathMoveToRel.IPath C# (CSharp) Method

IPath() private method

Draws this instance with the drawing wand.
private IPath ( IDrawingWand wand ) : void
wand IDrawingWand The want to draw on.
return void
    void IPath.Draw(IDrawingWand wand)
    {
      if (wand != null)
        wand.PathMoveToRel(_Coordinate.X, _Coordinate.Y);
    }
  }