aboutsummaryrefslogtreecommitdiffstats
path: root/src/rect.js
blob: 0a398be7aa9c5451e5f8edb04f87339178957505 (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()