setBottomLeft method

void setBottomLeft(
  1. Coordinate point
)

Sets bottom left.

Implementation

void setBottomLeft(Coordinate point)
{
  left = point.x;
  top = point.y - height;
}