blob: d0c695eb47cdf9c8c82fec5900829c6838a566af [file] [log] [blame]
function SVGStyleData(data, level) {
this.data = data;
this.type = data.ty;
this.d = '';
this.lvl = level;
this._mdf = false;
this.closed = data.hd === true;
this.pElem = createNS('path');
this.msElem = null;
}
SVGStyleData.prototype.reset = function() {
this.d = '';
this._mdf = false;
};