drawPathMoveToRelative method
DrawPathMoveToRelative() starts a new sub-path at the given coordinate using relative coordinates. The current point then becomes the specified coordinate.
x
target x ordinatey
target y ordinate
Implementation
void drawPathMoveToRelative({required double x, required double y}) =>
_magickWandBindings.DrawPathMoveToRelative(_wandPtr, x, y);