UtilsManager interface.

interface UtilsManager {
    getRiRaAngles(
        theId: string,
        theInitialRotation: WasmVector4d,
    ): WasmVector2d;
    setRiRaAngles(
        theId: string,
        theAngles: WasmVector2d,
        theInitialRotation: WasmVector4d,
    ): void;
}

Methods