drawPathLineToRelative method
DrawPathLineToRelative() draws a line path from the current point to the given coordinate using relative coordinates. The coordinate then becomes the new current point.
x
target x ordinatey
target y ordinate
Implementation
void drawPathLineToRelative({required double x, required double y}) =>
_magickWandBindings.DrawPathLineToRelative(_wandPtr, x, y);