123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- goog.provide('goog.math.IRect');
- goog.math.IRect = function() {};
- goog.math.IRect.prototype.left;
- goog.math.IRect.prototype.top;
- goog.math.IRect.prototype.width;
- goog.math.IRect.prototype.height;
|