setInitialMatrix()

in src/components/ZoomableSVGGroup.js [228:243]


  setInitialMatrix() {
    const parentSvg = this.el.ownerSVGElement;
    const transform = parentSvg.createSVGTransform();

    this.setState({
      scale: 1,
      matrix: [
        transform.matrix.a,
        transform.matrix.b,
        transform.matrix.c,
        transform.matrix.d,
        transform.matrix.e,
        transform.matrix.f,
      ],
    });
  }