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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
- Fix `enhanced-determinism` not producing cross-platform deterministic results for parry3d/parry3d-f64.
The feature now enables `glamx/scalar-math` to disable architecture-specific SIMD (NEON on arm64,
SSE2 on x86_64) which caused floating-point non-associativity in Vec3/Vec4/Quat dot products.

- Oriented (one-sided) 2D polylines ([#254](https://github.com/dimforge/parry/issues/254)). Build a `Polyline` with
`PolylineFlags::ORIENTED` via `Polyline::with_flags`, or toggle it with `Polyline::set_flags`, to clamp contact normals
to the outward side. This removes the spurious sideways push a body gets at a convex corner of a thin double-sided
polyline. A single 2D flag covers what `TriMesh` splits across `TriMeshFlags::ORIENTED` (assume an outward orientation
and compute pseudo-normals) and `TriMeshFlags::FIX_INTERNAL_EDGES` (use them to clamp contact normals). Also adds
`Polyline::flags`, `Polyline::segment_normal_constraints`, and the `PolylineFlags` / `SegmentPseudoNormals` types.
([#425](https://github.com/dimforge/parry/pull/425))
## 0.28.0

### Breaking changes
Expand Down
Loading
Loading