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

  // Inherit from
  inherit: SVG.Element
})