Vertex Viewer SDK
    Preparing search index...

    Interface DistanceVectorOverlay

    A Disposable represents a type with a dispose method that when called releases any resources associated to the object.

    interface DistanceVectorOverlay {
        id: string;
        type: "distance-vector";
        x: { end: Vector3.Vector3; start: Vector3.Vector3 };
        y: { end: Vector3.Vector3; start: Vector3.Vector3 };
        z: { end: Vector3.Vector3; start: Vector3.Vector3 };
        dispose(): void;
    }

    Hierarchy (View Summary)

    Index
    id: string
    type: "distance-vector"
    x: { end: Vector3.Vector3; start: Vector3.Vector3 }
    y: { end: Vector3.Vector3; start: Vector3.Vector3 }
    z: { end: Vector3.Vector3; start: Vector3.Vector3 }
    • Disposes any resources associated with the object.

      Returns void