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

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