summaryrefslogtreecommitdiffstats
path: root/src/rect.js
blob: 3f425585034bf299ac1f321574ec02233fd640e1 (plain)
1
2
3
4
5
6
SVG.Rect = function Rect() {
  this.constructor.call(this, SVG.create('rect'));
};

// Inherit from SVG.Shape
SVG.Rect.prototype = new SVG.Shape();