Vertex Viewer SDK
    Preparing search index...

    Interface MinimumDistanceMeasurementResult

    A measurement result that represents the closets point between two entities.

    interface MinimumDistanceMeasurementResult {
        distance: number;
        point1: Vector3.Vector3;
        point2: Vector3.Vector3;
        type: "minimum-distance";
    }
    Index

    Properties

    distance: number

    The distance between two points.

    The closest point of the first entity, in world coordinates.

    The closest point of the second entity, in world coordinates.

    type: "minimum-distance"

    The type.