weasel API - v0.8.0
    Preparing search index...

    Interface PoseComposition<TPose>

    Consumer's pose-composition strategy for hierarchical scenes. compose folds a child's pose (in parent's frame) up to the next frame; decompose is its inverse. Default is IDENTITY — an absolute-pose scene where every node already stores world coords (parent is grouping-only, no transform).

    interface PoseComposition<TPose> {
        compose: (parent: TPose, child: TPose) => TPose;
        decompose: (parent: TPose, world: TPose) => TPose;
    }

    Type Parameters

    • TPose
    Index

    Properties

    Properties

    compose: (parent: TPose, child: TPose) => TPose
    decompose: (parent: TPose, world: TPose) => TPose