subtract method

Point subtract(
  1. Point p
)

Modify this point so that is the difference of this Point and the x and y co-ordinates of the given Point. @param {Point} p The Point to subtract from the current Point. @return {Point} this. @see #offset @see #add

Implementation

_i3.Point subtract(_i3.Point p) => _i4.callMethod(
      this,
      'subtract',
      [p],
    );