unionPoint method

Rect unionPoint(
  1. Point p
)

Modify this Rect to be exactly big enough to contain both the original Rect and the given Point. @param {Point} p The Point to include in the new bounds. @return {Rect} this. @see #unionRect @see #union

Implementation

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