drawPathLineToHorizontalRelative method

void drawPathLineToHorizontalRelative(
  1. double x
)

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

  • x target x ordinate

Implementation

void drawPathLineToHorizontalRelative(double x) =>
    _magickWandBindings.DrawPathLineToHorizontalRelative(_wandPtr, x);