Release v0.30.0 - #435
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.30.0
Breaking changes
simd-stableandsimd-nightlyfeatures were removed. 4-lane SIMD is now always enabled(it falls back to scalar code on targets without SIMD support). The new opt-in
simd8featurewidens SIMD to 8 lanes for
f32builds; it requires an AVX-enabled target to actually emit256-bit instructions, and is incompatible with
enhanced-determinism.ContactManifold::subshape_pos1/subshape_pos2are no longer public fields. They are replaced bya single boxed
subshape_poses: Option<Box<SubshapePoses>>field (to shrinkContactManifold),accessed through the new
subshape_pos1()/subshape_pos2()getters andset_subshape_pos1/set_subshape_pos2setters.Added
query::sweep_toi: sweep-based time-of-impact queries. A timestep is modeled as aSweepbetweentwo endpoint poses (linear translation + rotation nlerp), and
sweep_time_of_impact(plussweep_time_of_impact_compositefor composite shapes) computes the earliest time the swept shapesreach a slop-based target separation, using conservative advancement. Also exports
ToiProxy,SimplexCache,SweepToiOutput,SweepToiStatus, andSweepCompositeFastShape.Bvhgains incremental and parallel update APIs:refit_partial, flag-preservingrefit_without_resolvevariants,refit_parallel, parallel BVTT traversal, and batchedparallel leaf updates (
insert_or_update_batch_partially_parallel,reinsert_or_update_with_change_detection,reinsert_or_update_if_present,update_partially_if_present, and theBvhLeafUpdateStatusenum).Modified