Viewer - Transformation Tools
    Preparing search index...

    Interface IGumballTransformEvent

    Definition of the gumballTransform event. These events are sent for gumballTransform specific events (EVENTTYPE_TRANSFORMATION_TOOLS).

    interface IGumballTransformEvent {
        id: string;
        localTransformations: mat4[];
        nodes: ITreeNode[];
        transformations: mat4[];
        type: "gumball";
        viewportId: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string

    The id of the transformation tools instance.

    localTransformations: mat4[]

    The local transformations. This is the transformation that is applied to the nodes, with the inverted initial transformations for single nodes and the multiplied initial transformations for multiple nodes.

    nodes: ITreeNode[]

    All currently selected nodes.

    transformations: mat4[]

    The currently used matrix.

    type: "gumball"

    The type of transformation tools that was used.

    viewportId: string