drawPathLineToAbsolute method

void drawPathLineToAbsolute({
  1. required double x,
  2. required double y,
})

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 ordinate
  • y target y ordinate

Implementation

void drawPathLineToAbsolute({required double x, required double y}) =>
    _magickWandBindings.DrawPathLineToAbsolute(_wandPtr, x, y);