Interface MeshHit

Represents an intersecting SceneMesh within a RayPickResult.

See @xeokit/sdk/pick for usage.

interface MeshHit {
    geometry: SceneGeometry;
    mesh: SceneMesh;
}

Properties

Properties

geometry: SceneGeometry

The SceneGeometry belonging to the SceneMesh that was picked.

mesh: SceneMesh

The SceneMesh that was picked.