offset method

Point offset(
  1. num dx,
  2. num dy
)

Modify this point by shifting its values with the given DX and DY offsets. @param {number} dx @param {number} dy @return {Point} this. @see #add @see #subtract

Implementation

_i3.Point offset(
  _i2.num dx,
  _i2.num dy,
) =>
    _i4.callMethod(
      this,
      'offset',
      [
        dx,
        dy,
      ],
    );