aboutsummaryrefslogtreecommitdiffstats
path: root/src/shape.js
blob: a11bbc478666d934514b81364c317c424f3401bc (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()