SVGCircle.js revision c093c1aed867e18aa4778708592e1ceb45d18cff
/**
* Draws an circle
*
* @module graphics
* @class SVGCircle
* @constructor
*/
{
};
/**
* Indicates the type of shape
*
* @property _type
* @readOnly
* @type String
*/
_type: "circle",
/**
* Updates the shape.
*
* @method _draw
* @private
*/
_draw: function()
{
x = this.get("x"),
y = this.get("y"),
this._fillChangeHandler();
this._strokeChangeHandler();
this._updateTransform();
}
});
/**
* Indicates the width of the shape
*
* @config width
* @type Number
*/
width: {
{
return val;
},
getter: function()
{
}
},
/**
* Indicates the height of the shape
*
* @config height
* @type Number
*/
height: {
{
return val;
},
getter: function()
{
}
},
/**
* Radius of the circle
*
* @config radius
* @type Number
*/
radius: {
value: 0
}
});