aboutsummaryrefslogtreecommitdiff
path: root/src/dynamics
AgeCommit message (Collapse)Author
2021-07-11Release v0.10.0v0.10.0Crozet Sébastien
2021-07-11impl more traits for componentsWaridley
2021-06-09Derive Clone for IslandManagerWaridley
also fix typo
2021-06-08Track the rigid-body graph IDs inside of the JointSet instead of RigidBodyIdsCrozet Sébastien
2021-06-02Merge pull request #173 from DasEtwas/must-use-pubSébastien Crozet
Add #[must_use] to builders, expose more fields
2021-06-02Merge pull request #195 from tpdickso/ungenerate-nansSébastien Crozet
Add feature flag to disable floating point exceptions in unexceptional code
2021-06-01wipTerence
2021-06-01Add ActiveCollisionTypes to easily enable collision-detection between two ↵Crozet Sébastien
non-static rigid-body.
2021-06-01CCD: take collision groups into accountCrozet Sébastien
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-29Fix compilation of the parallel versionCrozet Sébastien
2021-04-29Fix some warningsCrozet Sébastien
2021-04-27Fix regression in CCD resolution.Crozet Sébastien
2021-04-27Fix some warnings.Crozet Sébastien
2021-04-26Split rigid-bodies and colliders into multiple componentsCrozet Sébastien
2021-04-13Fix compilation in 2D.Crozet Sébastien
2021-04-13Fix torque generation for the prismatic joint motorCrozet Sébastien
2021-04-12Switch to nalgebra 0.26Crozet Sébastien
2021-04-03Make the CCDSolver clonable and serializable.Crozet Sébastien
2021-04-02Release v0.7.0Crozet Sébastien
2021-04-01Add getters indicating if the translation or rotation dofs of a rigid-body ↵Crozet Sébastien
are locked.
2021-04-01Fix parallel build.Crozet Sébastien
2021-04-01Some small performance improvements.Crozet Sébastien
2021-04-01Remove useless rigid-body fields.Crozet Sébastien
2021-03-31Remove the IntegrationParameters field we don't use.Crozet Sébastien
2021-03-31Revert the warmstart_correction_slope to its previous value.Crozet Sébastien
2021-03-31Fix more warnings.Crozet Sébastien
2021-03-31Test to see how the warmstart correction affect the benchmarks.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-31Fix the parallel solver to work properly with CCD.Crozet Sébastien
2021-03-30Run the position solver after the CCD motion clamping.Crozet Sébastien
2021-03-30CCD: take angular motion and penetration depth into account in various ↵Crozet Sébastien
thresholds.
2021-03-29Add missing files.Crozet Sébastien
2021-03-29Implement the ability to run multiple CCD substeps.Crozet Sébastien
2021-03-29Allow collider modification after its insersion to the ColliderSet.Crozet Sébastien
2021-03-28Attenuate the warmstart impulse for CCD contacts.Crozet Sébastien
CCD contacts result in very strong, instantaneous, impulses. So it is preferable to attenuate their contribution to subsequent timesteps to avoid overshooting.
2021-03-26First working version of non-linear CCD based on single-substep motion-clamping.Crozet Sébastien
2021-03-08Fix regression in the WASM version of the velocity solver.Crozet Sébastien
2021-03-07Fix regression causing invalid contacts to be solved.Crozet Sébastien
2021-03-07Reduce code duplication between the SIMD and non-SIMD contact solve and ↵Crozet Sébastien
warmstart.
2021-03-07Fix warning when targetting wasm.Crozet Sébastien
2021-03-07Projection friction impulses on an implicit cone instead of a pyramidal ↵Crozet Sébastien
approximation.