summaryrefslogtreecommitdiffstats
path: root/src/shape.js
blob: 0594ed75805f09b7afd70fdb782110565178cfae (plain)
1
2
3
4
5
6
SVG.Shape = function(element) {
  this.constructor.call(this, element)
}

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