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

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