File: src\geom\Ellipse.js
/**
* The Ellipse object can be used to specify a hit area for displayobjects
* see [PIXI.Ellipse](http://www.goodboydigital.com/pixijs/docs/classes/Ellipse.html)
* for more information.
*
* @class Ellipse
* @constructor
* @param x {Number} The X coord of the upper-left corner of the framing rectangle of this ellipse
* @param y {Number} The Y coord of the upper-left corner of the framing rectangle of this ellipse
* @param width {Number} The overall height of this ellipse
* @param height {Number} The overall width of this ellipse
*/
var Ellipse = require('../vendor/pixi').Ellipse;
module.exports = Ellipse;