Skip to main content

flywave-3dtile-datasource.tileintersection

Home > @flywave/flywave-3dtile-datasource > TileIntersection

TileIntersection type

Extended intersection result that includes the intersected tile

This interface extends the standard Three.js Intersection interface to include a reference to the tile that was intersected during raycasting.

Signature:

export type TileIntersection = Intersection & {
tile: Tile;
};