aboutsummaryrefslogtreecommitdiffstats
path: root/src/shape.js
blob: 3bfc2100892e438156730c1c5936c3f288b83af3 (plain)
1
2
3
4
5
6
7
8
9
10
SVG.Shape = SVG.invent({
  // Initialize node
  create: function(element) {
    this.constructor.call(this, element)
  }

  // Inherit from
, inherit: SVG.Element

})