Interface RotationGenerator

interface RotationGenerator {
    type: "rotation";
    clone(): RotationGenerator;
    genValue(q, t?): Quaternion;
    toJSON(): FunctionJSON;
}

Implemented by

Properties

Methods

Properties

type: "rotation"

Methods

  • Parameters

    • q: Quaternion
    • Optional t: number

    Returns Quaternion