drawPathLineToRelative method

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

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

Implementation

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