aboutsummaryrefslogtreecommitdiff
path: root/src/dynamics/rigid_body.rs
AgeCommit message (Collapse)Author
2023-01-15Give access to the world-space mass properties of rigid-bodiesSébastien Crozet
2023-01-15Add accessor to get the locked axes of a rigid-bodySébastien Crozet
2023-01-01Small coding style fixSébastien Crozet
2023-01-01Adds methods to retrieve forces added by the user.fabriceci
2022-12-11Properly take initial sleeping state set by the user when creating a rigid-bodySébastien Crozet
2022-12-11Add a dynamic ray-cast vehicle controllerSébastien Crozet
2022-12-11Allow disabling colliders, rigid-bodies and impulse jointsSébastien Crozet
2022-08-25Auto-update a rigid-body’s world mass-properties when the user sets their ↵Sébastien Crozet
position
2022-08-09Merge pull request #380 from dimforge/set-rotationSébastien Crozet
Make Collider::set_rotation and RigidBody::set_rotation take a rotation instead of an axis-angle.
2022-08-09Make Collider::set_rotation and RigidBody::set_rotation take a rotation ↵Sébastien Crozet
instead of an axis-angle.
2022-07-08Rename allowed_translation/rotation to enabled_translation/rotationSébastien Crozet
2022-07-08Fix 2D buildSébastien Crozet
2022-07-08cargo fmtSébastien Crozet
2022-07-08Rename restrict_translation/rotation to set_allowed_translation/rotationSébastien Crozet
2022-07-05Add methods to read the mass or volume of a collider.Sébastien Crozet
2022-07-05Improve the API for initializing/setting mass-propertiesSébastien Crozet
2022-07-03Add the ability to disable contacts between two rigid-bodies attached by jointsSébastien Crozet
2022-05-30CCD improvementsSébastien Crozet
- Fix bug where the CCD thickness wasn’t initialized properly. - Fix bug where the contact compliance would result in unwanted tunelling, despite CCD being enabled.
2022-04-28Rename RigidBody::set_mass_properties -> set_additional_mass_propertiesSébastien Crozet
2022-04-20First round deleting the component sets.Sébastien Crozet
2022-04-20Fix mass-properties update after collider changeSébastien Crozet
2022-03-20Type fixSébastien Crozet
2022-03-20Rename rigid-body `static` to `fixed`Sébastien Crozet
2022-03-20Fix warnings and add comments.Sébastien Crozet
2022-03-20Rigid-body: don’t clear forces at end of timestep + don’t wake-up a ↵Sébastien Crozet
rigid-body if the modified property is equal to the old value.
2022-03-20Joint API and joint motors improvementsSébastien Crozet
2022-01-16Fix some solver issuesSébastien Crozet
- Fix the wrong codepath taken by the solver for contacts involving a collider without parent. - Properly adress the non-linear treatment of the friction direction - Simplify the sleeping strategy - Add an impulse resolution multiplier
2022-01-09Allow locking individual translational axesSébastien Crozet
2021-12-31fixed restrict_rotationsDmitry Stepanov
2021-12-31Minor documentation fixesJakub Arnold
2021-10-26Track the change of effective dominance of a rigid-body.Sébastien Crozet
2021-10-24Note CCD interpenetration behaviorBenjamin Saunders
2021-09-25Impl Default for a few structsJamen Marz
2021-06-02Merge pull request #173 from DasEtwas/must-use-pubSébastien Crozet
Add #[must_use] to builders, expose more fields
2021-06-01Add velocity-based kinematic bodiesCrozet Sébastien
2021-06-01Rework the event systemCrozet Sébastien
2021-05-25Add prelude + use vectors for setting linvel/translation in buildersCrozet Sébastien
2021-05-06Remove Copy from RigidBodyBuilderDasEtwas
2021-05-06Added documentation to newly public fields derived from settersDasEtwas
2021-05-06Add #[must_use] to builders, expose more fieldsDasEtwas
2021-04-30Add comments.Crozet Sébastien
2021-04-26Split rigid-bodies and colliders into multiple componentsCrozet Sébastien
2021-04-01Add getters indicating if the translation or rotation dofs of a rigid-body ↵Crozet Sébastien
are locked.
2021-04-01Some small performance improvements.Crozet Sébastien
2021-04-01Remove useless rigid-body fields.Crozet Sébastien
2021-03-31Fix some warnings.Crozet Sébastien
2021-03-31Fix body status modification.Crozet Sébastien
2021-03-31Rename some RigidBodyBuilder mass-related setters to include "additional".Crozet Sébastien
2021-03-30CCD: take angular motion and penetration depth into account in various ↵Crozet Sébastien
thresholds.
2021-03-29Implement the ability to run multiple CCD substeps.Crozet Sébastien