drawPathMoveToRelative method

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

DrawPathMoveToRelative() starts a new sub-path at the given coordinate using relative coordinates. The current point then becomes the specified coordinate.

  • x target x ordinate
  • y target y ordinate

Implementation

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