setTopLeft method

void setTopLeft(
  1. Coordinate point
)

Sets top left.

Implementation

void setTopLeft(Coordinate point)
{
  left = point.x;
  top = point.y;
}