/**
 * @class Ext.draw.sprite.Ellipse
 * @extend Ext.draw.sprite.Path
 * @alias sprite.ellipse
 * 
 * A sprite that represents an ellipse.
 *
 *     @example
 *     Ext.create({
 *        xtype: 'draw', 
 *        renderTo: document.body,
 *        width: 600,
 *        height: 400,
 *        sprites: [{
 *            type: 'ellipse',
 *            cx: 100,
 *            cy: 100,
 *            rx: 80,
 *            ry: 50,
 *            fillStyle: '#1F6D91'
 *        }]
 *     });
 */
 
/**
 * @cfg {Number} [cx=0]
 * The center coordinate of the sprite on the x-axis.
 */
 
/**
 * @cfg {Number} [cy=0]
 * The center coordinate of the sprite on the y-axis.
 */
 
/**
 * @cfg {Number} [rx=1]
 * The radius of the sprite on the x-axis.
 */
 
/**
 * @cfg {Number} [ry=1]
 * The radius of the sprite on the y-axis.
 */
 
/**
 * @cfg {Number} [axisRotation=0]
 * The rotation of the sprite about its axis.
 */