add method

Point add(
  1. Point p
)

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

Implementation

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