/**
 * @class Ext.draw.sprite.Ellipse
 * @extend Ext.draw.sprite.Path
 * @alias sprite.ellipse
 * 
 * A sprite that represents an ellipse.
 */
 
/**
 * @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.
 */