warp.mesh_query_aabb_tiled#

warp.mesh_query_aabb_tiled(
id: uint64,
low: vec3f,
high: vec3f,
) MeshQueryAABBTiled#
  • Kernel: true
  • Python: false
  • Differentiable: false

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

Alias for tile_mesh_query_aabb(); see that function for usage details and an example.

Parameters:
  • id – The mesh identifier (must be the same for all threads in the block)

  • low – The lower bound of the query box, in the mesh’s local space (must be the same for all threads in the block)

  • high – The upper bound of the query box, in the mesh’s local space (must be the same for all threads in the block)

Returns:

A warp.MeshQueryAABBTiled.

Deprecated since version 1.18: Use tile_mesh_query_aabb() instead.