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

// Inherit from SVG.Element
SVG.Shape.prototype = new SVG.Element();