copy method

Rect copy()

@return {!goog.math.Rect} A new copy of this Rectangle.

Implementation

Rect copy()
{
  return new Rect(left, top, width, height);
}