SVGRect.js revision 66ca16dd76367c074fe4df1dcf7b555489a9bf85
/**
* Draws rectangles
*
* @module graphics
* @class SVGRect
* @constructor
*/
SVGRect = function()
{
SVGRect.superclass.constructor.apply(this, arguments);
};
SVGRect.NAME = "svgRect";
Y.extend(SVGRect, Y.SVGShape, {
/**
* Indicates the type of shape
*
* @property _type
* @readOnly
* @type String
*/
_type: "rect"
});
SVGRect.ATTRS = Y.SVGShape.ATTRS;
Y.SVGRect = SVGRect;