drawPathLineToVerticalAbsolute method

void drawPathLineToVerticalAbsolute(
  1. double y
)

DrawPathLineToVerticalAbsolute() draws a vertical line path from the current point to the target point using absolute coordinates. The target point then becomes the new current point.

  • y target y ordinate

Implementation

void drawPathLineToVerticalAbsolute(double y) =>
    _magickWandBindings.DrawPathLineToVerticalAbsolute(_wandPtr, y);