Stability improvements + remove cuda support #192
Merged
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.
This PR removes CUDA support (so we don’t have to stick to an older version of the rust toolchain due to cust being unmaintained) and implements features needed for the upcoming stability improvements in Rapier.
Modified
SimdCompositeShape::map_part_at
,TypedSimdCompositeShape::map_typed_part
, andTypedSimdCompositeShape::map_untyped_part
trait functions so that the closure argument takesan extra argument for the (optional) normal constraints. This argument can be safely ignored
by user code unless applying the normal collection is relevant to your use-case.
prediction
distance) whenever any contact is actually closer than this
prediction
distance.TopologyError::BadAdjascentTrianglesOrientation
toBadAdjacentTrianglesOrientation
.Fixed
Added
SdpMatrix2::inverse_and_get_determinant_unchecked
. This is useful for computing theinverse in a AoSoA SIMD setting.
Aabb::intersects_moving_aabb
to perform a swept test between two moving aabbs.