@twinfinity/core
    Preparing search index...

    Interface TrackCoordinate3D

    Interface for tracked 3D coordinate.

    interface TrackCoordinate3D {
        isEnabled?: boolean;
        x: number;
        y: number;
        z: number;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Properties

    isEnabled?: boolean

    If false then 2D coordinates will be suspended for this particular 3D coordinate. If undefined or false then 2D coordinates will be reported as usual.

    x: number
    y: number
    z: number