12 lines
306 B
Plaintext
12 lines
306 B
Plaintext
|
function SVGTransformData(mProps, op, container) {
|
||
|
this.transform = {
|
||
|
mProps: mProps,
|
||
|
op: op,
|
||
|
container: container,
|
||
|
};
|
||
|
this.elements = [];
|
||
|
this._isAnimated = this.transform.mProps.dynamicProperties.length || this.transform.op.effectsSequence.length;
|
||
|
}
|
||
|
|
||
|
export default SVGTransformData;
|