Source: core/drawing/geometry/geometryEllipse.js

  1. /**
  2. * @fileoverview
  3. * @private
  4. */
  5. goog.provide('xrx.geometry.Ellipse');
  6. goog.require('xrx.geometry');
  7. goog.require('xrx.geometry.Geometry');
  8. /**
  9. * @constructor
  10. * @private
  11. */
  12. xrx.geometry.Ellipse = function() {
  13. goog.base(this);
  14. this.cx = 0;
  15. this.cy = 0;
  16. this.rx = 0;
  17. this.ry = 0;
  18. };
  19. goog.inherits(xrx.geometry.Ellipse, xrx.geometry.Geometry);
  20. xrx.geometry.Ellipse.prototype.containsPoint = function(point) {
  21. return (((point[0] - this.cx) * (point[0] - this.cx)) / (this.rx * this.rx) +
  22. ((point[1] - this.cy) * (point[1] - this.cy)) / (this.ry * this.ry)) <= 1;
  23. };
  24. xrx.geometry.Ellipse.prototype.disposeInternal = function() {
  25. goog.base(this, 'disposeInternal');
  26. };