Taos API Reference
    Preparing search index...

    Interface PositionProperty

    A position that may vary with time, evaluated in ECEF.

    interface PositionProperty {
        getValueEcef(t: number): Vec3d | null;
        interval: TimeInterval | null;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    interval: TimeInterval | null

    The time the property first/last has a value, or null if it never varies.

    Methods

    • ECEF position at epoch-seconds t, or null when undefined at that time.

      Parameters

      • t: number

      Returns Vec3d | null