setTo method

Point setTo(
  1. num x,
  2. num y
)

Modify this Point with new X and Y values. @param {number} x @param {number} y @return {Point} this.

Implementation

_i3.Point setTo(
  _i2.num x,
  _i2.num y,
) =>
    _i4.callMethod(
      this,
      'setTo',
      [
        x,
        y,
      ],
    );