SVGTransformData.js 306 B

1234567891011
  1. function SVGTransformData(mProps, op, container) {
  2. this.transform = {
  3. mProps: mProps,
  4. op: op,
  5. container: container,
  6. };
  7. this.elements = [];
  8. this._isAnimated = this.transform.mProps.dynamicProperties.length || this.transform.op.effectsSequence.length;
  9. }
  10. export default SVGTransformData;