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