MCPcopy
hub / github.com/apache/echarts / calcOverallTrans

Function calcOverallTrans

src/coord/View.ts:571–580  ·  view source on GitHub ↗
(
    out: Transformable,
    rawTrans: Transformable,
    roamTrans: Transformable
)

Source from the content-addressed store, hash-verified

569}
570
571function calcOverallTrans(
572 out: Transformable,
573 rawTrans: Transformable,
574 roamTrans: Transformable
575): void {
576 transformableGetLocalTransform(rawTrans, tmpMtCOT1);
577 transformableGetLocalTransform(roamTrans, tmpMtCOT2);
578 matrixMul(tmpMtCOT2, tmpMtCOT2, tmpMtCOT1);
579 decomposeTransform(out, tmpMtCOT2);
580}
581const tmpMtCOT1 = matrixCreate();
582const tmpMtCOT2 = matrixCreate();
583

Callers 2

Calls 1

decomposeTransformFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…