warp.tile_mesh_query_aabb#

warp.tile_mesh_query_aabb(
id: uint64,
low: vec3f,
high: vec3f,
) MeshQueryAABBTiled#
  • Kernel

Construct an axis-aligned bounding box query against a warp.Mesh for thread-block parallel traversal.

This query can be used in tiled kernels to cooperatively traverse a mesh’s BVH across a thread block.

Note

This is an alias for mesh_query_aabb_tiled().

Parameters:
  • id – The mesh identifier

  • low – The lower bound of the bounding box in mesh space (must be the same for all threads in the block)

  • high – The upper bound of the bounding box in mesh space (must be the same for all threads in the block)