ImageMagick.Paths.MoveToRel C# (CSharp) Method

MoveToRel() public method

Initializes a new instance of the PathMoveToRel class.
public MoveToRel ( PointD coordinate ) : Paths
coordinate PointD The coordinate to use.
return Paths
    public Paths MoveToRel(PointD coordinate)
    {
      _Paths.Add(new PathMoveToRel(coordinate));
      return this;
    }

Same methods

Paths::MoveToRel ( double x, double y ) : Paths