Documentation
    Preparing search index...

    Type Alias TargetOrientation<T>

    Represents a directional orientation in 3D space. This includes:

    • A target position defined by coordinates (x, y, z)
    • The orientation angles: pitch, yaw, and roll
    • The distance from an origin point to the target
    type TargetOrientation<T = Vector3> = {
        distance: number;
        pitch: number;
        roll: number;
        target: T;
        yaw: number;
    }

    Type Parameters

    Index

    Properties

    distance: number
    pitch: number
    roll: number
    target: T
    yaw: number