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