Vertex Viewer SDK
    Preparing search index...

    Interface Quaternion

    A type that represents a quaternion. Quaternions are used in 3D graphics to represent rotations.

    interface Quaternion {
        w: number;
        x: number;
        y: number;
        z: number;
    }
    Index

    Properties

    w x y z

    Properties

    w: number
    x: number
    y: number
    z: number