drawScale method

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

DrawScale() adjusts the scaling factor to apply in the horizontal and vertical directions to the current coordinate space.

  • x : horizontal scale factor
  • y : vertical scale factor

Implementation

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