setEmpty method

GRect setEmpty()

Sets the values of the GRect to (0,0,0,0) to make it an empty rectangle. Returns the modified GRect object.

Implementation

GRect setEmpty() {
  return setTo(0, 0, 0, 0);
}