Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions source/isaaclab/changelog.d/particle-mesh-counter.minor.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Added
^^^^^

* Added :class:`~isaaclab.utils.warp.ParticleMeshCounter` for fast, training-time counting of
particles inside closed (watertight) region meshes via robust winding-number point queries.
The counter supports multiple, independently posed region meshes per environment, sanitizes
non-finite particle positions, and returns both per-region counts and the per-particle
containment mask.
* Added the :func:`~isaaclab.utils.warp.make_box_region_mesh` and
:func:`~isaaclab.utils.warp.make_frustum_region_mesh` helpers for building watertight,
outward-oriented region meshes (axis-aligned boxes and capped circular frusta / cup cavities).
4 changes: 4 additions & 0 deletions source/isaaclab/isaaclab/utils/warp/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@
# SPDX-License-Identifier: BSD-3-Clause

__all__ = [
"ParticleMeshCounter",
"ProxyArray",
"convert_to_warp_mesh",
"make_box_region_mesh",
"make_frustum_region_mesh",
"raycast_dynamic_meshes",
"raycast_mesh",
"raycast_single_mesh",
]

from .ops import convert_to_warp_mesh, raycast_dynamic_meshes, raycast_mesh, raycast_single_mesh
from .particle_mesh import ParticleMeshCounter, make_box_region_mesh, make_frustum_region_mesh
from .proxy_array import ProxyArray
Loading
Loading