scale method

Point scale(
  1. num sx,
  2. num sy
)

Modify this Point so that its X and Y values have been scaled by given factors along the X and Y axes. @param {number} sx @param {number} sy @return {Point} this.

Implementation

_i3.Point scale(
  _i2.num sx,
  _i2.num sy,
) =>
    _i4.callMethod(
      this,
      'scale',
      [
        sx,
        sy,
      ],
    );