getBottomRight method

Coordinate getBottomRight()

@return {!goog.math.Coordinate} A new coordinate for the bottom-right corner of the rectangle.

Implementation

Coordinate getBottomRight()
{
  return new Coordinate(left + width, top + height);
}