interface RotationGenerator {
    type: "rotation";
    clone(): RotationGenerator;
    genValue(
        memory: GeneratorMemory,
        q: Quaternion,
        delta: number,
        t: number,
    ): Quaternion;
    startGen(memory: GeneratorMemory): void;
    toJSON(): FunctionJSON;
}

Implemented by

Properties

Methods

Properties

type: "rotation"

Methods