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

// Inherit from SVG.Shape
SVG.Rect.prototype = new SVG.Shape