Documentation
    Preparing search index...

    Type Alias LookAtPoint<T>

    Represents a point in 3D space with a focus on a target, including orientation angles (pitch, yaw, roll). The coordinate system is defined by the type parameter ReferenceT, ensuring that points from different coordinate systems are not accidentally mixed.

    This is a immutable substitute for RIA's LookAt class.

    type LookAtPoint<T = Vector3> = {
        origin: T;
        targetOrientation: TargetOrientation<T>;
    }

    Type Parameters

    Index

    Properties

    origin: T
    targetOrientation: TargetOrientation<T>