Source: core/drawing/geometry/geometryRect.js

  1. /**
  2. * @fileoverview
  3. * @private
  4. */
  5. goog.provide('xrx.geometry.Rect');
  6. goog.require('xrx.geometry');
  7. goog.require('xrx.geometry.Geometry');
  8. goog.require('goog.math.Box');
  9. /**
  10. * @constructor
  11. * @private
  12. */
  13. xrx.geometry.Rect = function() {
  14. goog.base(this);
  15. this.x = 0;
  16. this.y = 0;
  17. this.width = 0;
  18. this.height = 0;
  19. };
  20. goog.inherits(xrx.geometry.Rect, xrx.geometry.Geometry);
  21. xrx.geometry.Rect.prototype.getBox = function() {
  22. return new goog.math.Box(this.y, this.x + this.width, this.y + this.height,
  23. this.x);
  24. };
  25. xrx.geometry.Rect.prototype.containsPoint = function(point) {
  26. return point[0] >= this.x && point[1] >= this.y &&
  27. point[0] <= this.x + this.width && point[1] <= this.y + this.height;
  28. };
  29. xrx.geometry.Rect.prototype.disposeInternal = function() {
  30. goog.base(this, 'disposeInternal');
  31. };