Skip to content
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
`IntegrationParameters::softness` and `GenericJoint::softness` fields (#789).
- Removed `IntegrationParameters::joint_natural_frequency` and `IntegrationParameters::joint_damping_ratio` in favor of
per-joint softness coefficients `GenericJoint::softness` (#789).
- Make `SolverContact::contact_id` public so that user code knows what geometric contact it originates from (#888).

## v0.30.1 (17 Oct. 2025)

Expand Down
2 changes: 1 addition & 1 deletion src/geometry/contact_pair.rs
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ pub struct SolverContactGeneric<N: SimdRealCopy, const LANES: usize> {
/// This isn’t a bool for optimizations purpose with SIMD.
pub is_new: N, // 1/1
/// The index of the manifold contact used to generate this solver contact.
pub(crate) contact_id: [u32; LANES], // 1/1
pub contact_id: [u32; LANES], // 1/1
#[cfg(feature = "dim3")]
pub(crate) padding: [N; 1],
}
Expand Down