@three-tile/lib
    Preparing search index...

    Interface LocationInfo

    地面信息类型(经度、纬度、高度)

    interface LocationInfo {
        barycoord?: Vector3 | null;
        batchId?: number;
        distance: number;
        distanceToRay?: number;
        face?: Face | null;
        faceIndex?: number | null;
        index?: number;
        instanceId?: number;
        location: Vector3;
        normal?: Vector3;
        object: Object3D;
        point: Vector3;
        pointOnLine?: Vector3;
        uv?: Vector2;
        uv1?: Vector2;
    }

    Hierarchy

    • Intersection
      • LocationInfo
    Index

    Properties

    barycoord?: Vector3 | null
    batchId?: number
    distance: number

    Distance between the origin of the ray and the intersection

    distanceToRay?: number
    face?: Face | null

    Intersected face

    faceIndex?: number | null

    Index of the intersected face

    index?: number
    instanceId?: number

    The index number of the instance where the ray intersects the THREE.InstancedMesh | InstancedMesh

    location: Vector3
    normal?: Vector3
    object: Object3D

    The intersected object

    point: Vector3

    Point of intersection, in world coordinates

    pointOnLine?: Vector3
    uv?: Vector2
    uv1?: Vector2