Options
All
  • Public
  • Public/Protected
  • All
Menu

The Raycaster class is here.

Hierarchy

  • Raycaster

Implements

  • RaycasterLike

Index

Constructors

Methods

Constructors

  • new Raycaster(stream: StreamApi, imageScaleProvider: ImageScaleProvider): Raycaster

Methods

  • hitItems(point: Point, options?: RaycasterOptions): Promise<undefined | IHitItemsResult>
  • Performs request on the stream to find items that intersect the given point.

    example
    const viewer = document.querySelector("vertex-viewer");

    viewer.addEventListener("tap", async (event) => {
    const scene = await viewer.scene();
    const raycaster = scene.raycaster();

    // Query the scene for the item at the position of the `tap` event
    const [hit] = await raycaster.hitItems(event.detail.position);

    if (hit != null) {
    // If there was an item present at the position, select it
    await scene.elements((op) =>
    op.items.where((q) => q.withItemId(hit.itemId.hex)).select()
    );
    }
    });
    see

    Scene.items for more information on the operations that can be performed on a hit result.

    Parameters

    • point: Point

      The point to cast from looking for intersections.

    • Optional options: RaycasterOptions

      Optional set of options for the request @see RaycasterOptions for available options.

    Returns Promise<undefined | IHitItemsResult>