Release v0.33.0#944
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v0.33.0 (05 June 2026)
Added
mjcf-rsandrapier3d-mjcfcrates: a pure-Rust (nolibmujoco/FFI) loader for the MuJoCoMJCF XML format.
mjcf-rsparses MJCF into a typed AST — resolving<include>,<default>class inheritance, angle units, and the several rotation specs (
quat,axisangle,euler,xyaxes,zaxis) — andrapier3d-mjcfconverts a model into rigid-bodies, colliders, andjoints via
MjcfRobot. Meshes load behind thestl/wavefront/mshfeatures, and visualmeshes support per-vertex normals with optional smoothing (#936, #943).
rapier-py-*crates underpython/), generated and publishedas installable wheels (#938).
PhysicsWorldconvenience wrapper bundlingRigidBodySet,ColliderSet, the broad/narrowphases, islands, joints, the CCD solver, gravity, and integration parameters in a single struct,
for simpler setup of basic simulations. It also exposes helpers for waking bodies (
wake_up,wake_up_all), iterating only active bodies (active_bodies), and iterating joints — includingthose attached to a given body (
impulse_joints,impulse_joints_with,multibody_joints,multibody_joints_with).std/allocfeature gating:no_stdbuilds are now supported, and a subset of the librarycompiles without
allocas well (e.g. forspirvtargets) (#928).InteractionGroupsandGroupnow derivebytemuck::NoUninitunder thebytemuckfeature,and
InteractionTestModeis#[repr(u32)], making them GPU-uploadable.MultibodyJoint::joint_rot()andMultibodyJoint::coords()expose the joint’s rotation andgeneralized coordinates publicly.
ImpulseJointSet::set_bodiesrewires an existing impulse joint to a new pair of bodies whilepreserving its handle, configuration, and warm-started impulses.
rapier3d-urdf:UrdfLoaderOptions::mesh_converterlets the loader replace the original mesh with acheap proxy shape (e.g.
MeshConverter::Obb) while keeping the source mesh available forrendering via the new
UrdfCollider::visual/UrdfVisualtypes.UrdfLoaderOptions::scaleapplies a uniform scale to link positions, joint anchors,mesh sizes, primitive shape sizes, inertial offsets, and prismatic joint limits.
UrdfLoaderOptions::squeeze_empty_fixed_links(defaulttrue) removes empty linksconnected by fixed joints, splicing the kinematic chain so bodyless “frame-only” links
(e.g.
world,*_tcp) no longer create mass-less rigid-bodies.<geometry></geometry>blocks are now accepted (sanitized beforeparsing, then skipped when building colliders).
urdf_rscrate is re-exported.Fixed
QueryPipeline::project_pointnow honors itsmax_distargument (it was previously ignored).PhysicsHooks::filter_contact_pairhook, matching narrow-phase semantics. Previously, CCD would clamp a fast-moving body's
motion at a predicted impact with a pair the user had filtered out (#929, closes #754).
RigidBody::add_force/add_torque/reset_forces/reset_torques: user-defined forces and torques are not cleared automatically betweensteps and persist until explicitly reset (#903).
Modified
rapier3d-urdf,rapier3d-meshloader, andrapier3d-mjcfso theyfollow the same versioning as the other libraries in the workspace.
CCDSolver::find_first_impactandCCDSolver::predict_impacts_at_next_positionsnow take an extrahooks: &dyn PhysicsHooksargument.
PhysicsPipeline::stepcallers are unaffected.QueryPipeline::project_point_and_get_featurenow takes an additionalmax_dist: Realargument.rapier3d-urdf):UrdfLink::collidersandUrdfLinkHandle::colliderschangedfrom
Vec<Collider>/Vec<ColliderHandle>toVec<UrdfCollider>/Vec<UrdfColliderHandle>to carry the optional visual mesh override.
rapier3d-urdf): withsqueeze_empty_fixed_linksdefaulting totrue,empty links bridged by fixed joints are now collapsed by default. Set it to
falseto keepthe previous behavior.
glamxto 0.3.wideversion to1(#902).