ohctechv3/.svn/pristine/c5/c54f297f6c1716ccb075d9084acc323050c8397c.svn-base
2024-10-28 15:03:36 +05:30

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;