aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2020-12-03Remove the position fields from the PrimitiveContactGenerationContextcollider_pos_in_manifoldCrozet Sébastien
2020-12-03Fix bogus delta computation of ground position constraint solver.Crozet Sébastien
2020-12-03Replace the delta-position by the collider positions in the contact manifolds.Crozet Sébastien
2020-12-02Add a RigidBody::set_mass_properties method.Crozet Sébastien
2020-12-02Fix a bug when applying the parallel axis theorem to the angular inertia ↵Crozet Sébastien
matrix is incorrect if the mass is zero.
2020-12-01Rename RigidBodyBuilder::principal_inertia -> principal_angular_inertia for ↵Crozet Sébastien
clarity.
2020-11-30Add a 2D demo for locking rotation.Crozet Sébastien
2020-11-30Update the changelog + make the boolean flags more intuitive.Crozet Sébastien
2020-11-30Add a simpler to lock the rotation or translation of a dynamic rigid-body.Crozet Sébastien
2020-11-26Restore the previous sleeping pattern.Crozet Sébastien
2020-11-26Fix collider insertion/removal tracking.Crozet Sébastien
2020-11-26Fix bogus collider removal in the broad-phase.Crozet Sébastien
2020-11-25Make the RigidBodyChanges values more readable.Crozet Sébastien
2020-11-25Properly track some user-initiatied rigid-body modifications.Crozet Sébastien
2020-11-24Add methods to iterate through all the contact and proximity pairs.Crozet Sébastien
2020-11-24Allow retrieving one specific contact pair or proximity pair.Crozet Sébastien
2020-11-24Fix crash when removing a collider with no graph ID.Crozet Sébastien
2020-11-23Remove the narrow-phase graph indices from the collider.Crozet Sébastien
They are on the narrow-phase now.
2020-11-22Fix NaNs in unused WAABB lanes during the creation of the WAABBTree.Crozet Sébastien
2020-11-19Add explicit wake_up parameter to method setting the position and velocity ↵Crozet Sébastien
of a rigid-body.
2020-11-19Allow a rigid-body to be initialized asleep.Crozet Sébastien
2020-11-19Add a parameter to indicate if collider removal should wake-up its parent.Crozet Sébastien
2020-11-19Remove traces of the `fluids` feature.Crozet Sébastien
2020-11-19Remove the Salva integration code from rapier + add a plugin system to the ↵Crozet Sébastien
testbed.
2020-11-19Start integrating salva into rapier.Crozet Sébastien
2020-11-19Merge pull request #34 from robert-hrusecky/rigid_body_wake_paramsSébastien Crozet
Add wake_up parameter to rigidbody methods
2020-11-19Merge pull request #60 from dimforge/ball_ball_collision_bugSébastien Crozet
Fix NaN when two balls are in contact and their centers coincide.
2020-11-11Fix NaN when two balls are in contact and their centers coincide.Crozet Sébastien
2020-11-10SAP: don't serialize workspaces and caches.Crozet Sébastien
2020-11-10SAP: make the update_count a u8.Crozet Sébastien
It can only have three values 0,1,2, so storing a whole usize is useless.
2020-11-10Merge pull request #30 from robert-hrusecky/infinite_fall_memorySébastien Crozet
Infinite fall memory fix for #14
2020-11-03Add damping support + demos.Crozet Sébastien
2020-11-03Reset the rigid-bodies internal links properly.Crozet Sébastien
2020-11-03Fix 3D compilation.Crozet Sébastien
2020-11-03Rename reset_internal_links -> reset_internal_references.Crozet Sébastien
2020-11-03Implement Clone for everything that can be cloned.Crozet Sébastien
2020-11-03Make cloning rigid-bodies and colliders more idiomatic.Crozet Sébastien
Fix #53
2020-11-03Fix typo.Crozet Sébastien
2020-11-03Add more details to the MassProperties constructors comments.Crozet Sébastien
2020-11-03Add the ability to set the mass and mass properties of the rigid-body built ↵Crozet Sébastien
with the RigidBodyBuilder
2020-11-03Add restitution.Crozet Sébastien
2020-11-02Add a cache of empty regions avoiding reallocationRobert Hrusecky
2020-11-02Merge branch 'master' into infinite_fall_memoryRobert Hrusecky
2020-11-02Implement joint removal.Crozet Sébastien
2020-11-02Fix 2D compilation.Crozet Sébastien
2020-11-02Fix simulation reaching different states when started from different snaphots.Crozet Sébastien
2020-10-29Merge branch 'master' into infinite_fall_memoryRobert Hrusecky
Fix merge conflict resulting from "axii" spelling correction
2020-10-27Fix performance regression due to sleeping objects pairs no longer being ↵Crozet Sébastien
ignored by the narrow-phase.
2020-10-27ContactPairFilter: don't overwrite the effect of the solver groups.Crozet Sébastien
This is more consistent with the fact that the effect of collision groups is not overwritten either.
2020-10-27Rename SolverFlags::COMPUTE_FORCES to SolverFlags::COMPUTE_IMPULSES.Crozet Sébastien
This is closer to what the solver actually does.