getBottomLeft method

Coordinate getBottomLeft()

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

Implementation

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