aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-03-01Merge pull request #129 from dimforge/v0.6.0v0.6.0Sébastien Crozet
Release v0.6.0
2021-03-01Release v0.6.0Crozet Sébastien
2021-02-25Merge pull request #124 from dimforge/modify_contact_normalSébastien Crozet
Contact modification: make the contact normal modifiable too.
2021-02-25Contact modification: make the contact normal modifiable too.Crozet Sébastien
2021-02-25Merge pull request #122 from dimforge/dominanceSébastien Crozet
Implement dominance groups
2021-02-24Merge pull request #123 from EmbarkStudios/modify-jointsSébastien Crozet
Add JointSet::get_mut and get_unknown_gen_mut
2021-02-24less mutEmil Ernerfeldt
Co-authored-by: Sébastien Crozet <sebastien@crozet.re>
2021-02-24less mutEmil Ernerfeldt
Co-authored-by: Sébastien Crozet <sebastien@crozet.re>
2021-02-24Add JointSet::get_mut and get_unknown_gen_mutEmil Ernerfeldt
Fix https://github.com/dimforge/rapier/issues/121
2021-02-24Fix the parallel build.Crozet Sébastien
2021-02-24Implement dominance.Crozet Sébastien
2021-02-24Merge pull request #120 from dimforge/contact_modificationSébastien Crozet
Add the ability to modify the contact points seen by the constraints solver
2021-02-23Fix warnings in the WASM build.Crozet Sébastien
2021-02-23Fix the compilation of tests.Crozet Sébastien
2021-02-23Rename modify_contacts -> modify_solver_contacts.Crozet Sébastien
2021-02-23Update the testbed to use PhysicsHooks.Crozet Sébastien
2021-02-23Add a helper function for one-way platforms.Crozet Sébastien
2021-02-23Add a method to modify all the active dynamic bodies on the RigidBodySet.Crozet Sébastien
2021-02-23Properly take the tangent_velocity into account in the velocity solver.Crozet Sébastien
2021-02-23Add one-way platform + conveyor belt demos.Crozet Sébastien
2021-02-23Introduce the PhysicsHook trait used for both contact filtering and contact ↵Crozet Sébastien
modification.
2021-02-22Use contact ids instead of contact reordering in order to identify the ↵Crozet Sébastien
impulse writeback location.
2021-02-22Merge pull request #119 from dimforge/joint_driveSébastien Crozet
Add joint motors
2021-02-22Ball joint: remove unused field.Crozet Sébastien
2021-02-22Use the github versions of nalgebra and parry until they are released.Crozet Sébastien
2021-02-22Fix warnings.Crozet Sébastien
2021-02-22Some minor cleanup and joint constraint refactoring.Crozet Sébastien
2021-02-22Make Simd prismatic joint limit code transmit torque.Crozet Sébastien
2021-02-22Make prismatic joint limit transmit torque.Crozet Sébastien
2021-02-22Add motors to prismatic joints.Crozet Sébastien
2021-02-22Take max motor impulse into account for the ball joint.Crozet Sébastien
2021-02-21Add actuated ball and revolute joint to the 3D joint demo.Crozet Sébastien
2021-02-21Add motors to ball joints.Crozet Sébastien
2021-02-21Fix lever-arm handling in the revolute joint.Crozet Sébastien
2021-02-19Make revolute joint actuation work properly even when SIMD is enabled.Crozet Sébastien
2021-02-19Complete the implementation of non-simd joint motor for the revolute joint.Crozet Sébastien
2021-02-18Merge pull request #114 from EmbarkStudios/split-contacts-2Sébastien Crozet
Split bouncy and resting contacts (take 2)
2021-02-18Always apply the predictive contact term, even for bouncing contactsEmil Ernerfeldt
2021-02-18Remove unused restitution_velocity_threshold parameterEmil Ernerfeldt
2021-02-18New contacts are bouncy, old are restingEmil Ernerfeldt
If a contact is new (previous impluse = 0), then we treat it as bouncy (respecting restitution). If the contact is old we treat it as resting. Exceptions for restitutions <=0 and >= 1.
2021-02-18Merge pull request #118 from EmbarkStudios/collider-handles-in-filterSébastien Crozet
Add ColliderHandle:s to PairFilterContext
2021-02-17Revolute joint constraints: properly adjust the angular impulse and torque ↵Crozet Sébastien
projection.
2021-02-17Add ColliderHandle:s to PairFilterContextEmil Ernerfeldt
This makes it easy to write custom filters based on the handles. For instance, a user can add pairs of `ColliderHandle`s into a `HashSet` and do a lookup in a `ContactPairFilter` to easily (if maybe not efficiently) disable collisions between pairs of colliders. The same could be accomplished by using the `user_data: u128` field of the `Collider`, but it would be less ergonomic, and also with this PR that `user_data` space can be saved for more important things.
2021-02-15Properly writeback the generic constrainst impulse when it comes from a ↵Crozet Sébastien
revolute joint.
2021-02-15Generic velocity constraint: split the translation and rotation terms.Crozet Sébastien
2021-02-15Implement non-linear position stabilization for the generic constraint.Crozet Sébastien
2021-02-14Merge pull request #112 from alec-deason/typoSébastien Crozet
Fix a small documentation typo on InteractionGroups
2021-02-13Fix a small documentation typoAlec Deason
2021-02-12Various generic joint fixes.Crozet Sébastien
2021-02-11More experiments with the way the generic joint is stabilized.Crozet Sébastien