blob: 87146634b59e6482d0cb74f0a713a408d7315486 (
plain)
1
2
3
4
5
6
7
8
9
|
// ### The defs node
//
SVG.Defs = function Defs() {
this.constructor.call(this, SVG.create('defs'));
};
// Inherits from SVG.Container
SVG.Defs.prototype = new SVG.Container();
|