Interface SceneObjectHit

Represents a picked SceneObject within a RayPickResult.

See @xeokit/sdk/pick for usage.

interface SceneObjectHit {
    meshHits: MeshHit[];
    sceneObject: SceneObject;
}

Properties

meshHits: MeshHit[]

Represents the Meshes within the picked SceneObject that intersect the picking ray.

sceneObject: SceneObject

The SceneObject that was picked.