drawPathLineToVerticalRelative method

void drawPathLineToVerticalRelative(
  1. double y
)

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

  • y target y ordinate

Implementation

void drawPathLineToVerticalRelative(double y) =>
    _magickWandBindings.DrawPathLineToVerticalRelative(_wandPtr, y);