Interface TransformationSpace

A transformation space transforms absolute positions to another (global) space.

interface TransformationSpace {
    parent: TransformationSpace;
    uid: string;
    transform<In, Out>(position, options?): Out;
    update(service): Promise<void>;
}

Implemented by

Properties

Methods

Properties

Set the parent space

Param: space

Parent space

uid: string

Unique uuidv4 identifier of the transformation space

Methods