scale method
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,
],
);