drawPathMoveToAbsolute method

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

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

  • x target x ordinate
  • y target y ordinate

Implementation

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