CanvasRect.js revision a75ebc38c1de401b679953a9b87bd323f0f48d02
0fdefaa9ca017edfb76b736c825b34186f33045aTripp * <a href="http://www.w3.org/TR/html5/the-canvas-element.html">Canvas</a> implementation of the <a href="Rect.html">`Rect`</a> class.
0fdefaa9ca017edfb76b736c825b34186f33045aTripp * `CanvasRect` is not intended to be used directly. Instead, use the <a href="Rect.html">`Rect`</a> class.
0fdefaa9ca017edfb76b736c825b34186f33045aTripp * If the browser lacks <a href="http://www.w3.org/TR/SVG/">SVG</a> capabilities but has
0fdefaa9ca017edfb76b736c825b34186f33045aTripp * <a href="http://www.w3.org/TR/html5/the-canvas-element.html">Canvas</a> capabilities, the <a href="Rect.html">`Rect`</a>
0fdefaa9ca017edfb76b736c825b34186f33045aTripp * class will point to the `CanvasRect` class.
a75ebc38c1de401b679953a9b87bd323f0f48d02Tripp * @module graphics
66ca16dd76367c074fe4df1dcf7b555489a9bf85Tripp * @class CanvasRect
66ca16dd76367c074fe4df1dcf7b555489a9bf85Tripp * @constructor
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp CanvasRect.superclass.constructor.apply(this, arguments);
828c58761d90445b8b9d20a82d85dc1479317f71Tripp * Indicates the type of shape
828c58761d90445b8b9d20a82d85dc1479317f71Tripp * @property _type
828c58761d90445b8b9d20a82d85dc1479317f71Tripp * @readOnly
828c58761d90445b8b9d20a82d85dc1479317f71Tripp * @type String
66ca16dd76367c074fe4df1dcf7b555489a9bf85Tripp * Draws the shape.
66ca16dd76367c074fe4df1dcf7b555489a9bf85Tripp * @method _draw
828c58761d90445b8b9d20a82d85dc1479317f71Tripp _draw: function()