Release v0.29.0#427
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.
0.29.0
Breaking changes
<Polyline as TypedCompositeShape>::PartNormalConstraintsis nowSegmentPseudoNormalsinstead of().Fixed
enhanced-determinismnot producing cross-platform deterministic results for parry3d/parry3d-f64.The feature now enables
glamx/scalar-mathto disable architecture-specific SIMD (NEON on arm64,SSE2 on x86_64) which caused floating-point non-associativity in Vec3/Vec4/Quat dot products.
PolylinewithPolylineFlags::ORIENTEDviaPolyline::with_flags, or toggle it withPolyline::set_flags, to clamp contact normalsto 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
TriMeshsplits acrossTriMeshFlags::ORIENTED(assume an outward orientationand compute pseudo-normals) and
TriMeshFlags::FIX_INTERNAL_EDGES(use them to clamp contact normals). Also addsPolyline::flags,Polyline::segment_normal_constraints, and thePolylineFlags/SegmentPseudoNormalstypes.(#425)