| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-11-10 | SAP: 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-10 | Move the infinite fall debug example to the 3D examples. | Crozet Sébastien | |
| All our other debug examples were there. | |||
| 2020-11-10 | Merge pull request #30 from robert-hrusecky/infinite_fall_memory | Sébastien Crozet | |
| Infinite fall memory fix for #14 | |||
| 2020-11-03 | Release v0.3.2v0.3.2 | Crozet Sébastien | |
| 2020-11-03 | Merge pull request #55 from dimforge/damping | Sébastien Crozet | |
| Add damping support + demos. | |||
| 2020-11-03 | Add damping support + demos. | Crozet Sébastien | |
| 2020-11-03 | Merge pull request #54 from dimforge/idiomatic_clone | Sébastien Crozet | |
| Allow cloning all the physics components worth cloning | |||
| 2020-11-03 | Reset the rigid-bodies internal links properly. | Crozet Sébastien | |
| 2020-11-03 | Fix 3D compilation. | Crozet Sébastien | |
| 2020-11-03 | Rename reset_internal_links -> reset_internal_references. | Crozet Sébastien | |
| 2020-11-03 | Implement Clone for everything that can be cloned. | Crozet Sébastien | |
| 2020-11-03 | Make cloning rigid-bodies and colliders more idiomatic. | Crozet Sébastien | |
| Fix #53 | |||
| 2020-11-03 | Merge pull request #52 from dimforge/set_mass | Sébastien Crozet | |
| Add the ability to set the mass and mass properties of the rigid-body built with the RigidBodyBuilder | |||
| 2020-11-03 | Fix typo. | Crozet Sébastien | |
| 2020-11-03 | Add more details to the MassProperties constructors comments. | Crozet Sébastien | |
| 2020-11-03 | Add the ability to set the mass and mass properties of the rigid-body built ↵ | Crozet Sébastien | |
| with the RigidBodyBuilder | |||
| 2020-11-03 | Merge pull request #51 from dimforge/restitution | Sébastien Crozet | |
| Add restitution. | |||
| 2020-11-03 | Add restitution. | Crozet Sébastien | |
| 2020-11-02 | Add a cache of empty regions avoiding reallocation | Robert Hrusecky | |
| 2020-11-02 | Merge branch 'master' into infinite_fall_memory | Robert Hrusecky | |
| 2020-11-02 | Release v0.3.1v0.3.1 | Crozet Sébastien | |
| 2020-11-02 | Merge pull request #50 from dimforge/joint_removal | Sébastien Crozet | |
| Implement joint removal. | |||
| 2020-11-02 | Implement joint removal. | Crozet Sébastien | |
| 2020-11-02 | Merge pull request #49 from dimforge/determinism_bug | Sébastien Crozet | |
| Fix simulation reaching different states when started from different snaphots | |||
| 2020-11-02 | Fix 2D compilation. | Crozet Sébastien | |
| 2020-11-02 | Fix simulation reaching different states when started from different snaphots. | Crozet Sébastien | |
| 2020-10-29 | Merge branch 'master' into infinite_fall_memory | Robert Hrusecky | |
| Fix merge conflict resulting from "axii" spelling correction | |||
| 2020-10-27 | Release v0.3.0v0.3.0 | Crozet Sébastien | |
| 2020-10-27 | Merge pull request #44 from dimforge/custom_callbacks_filtering | Sébastien Crozet | |
| Added user-implementable traits for collision/proximity pair filtering. | |||
| 2020-10-27 | Fix performance regression due to sleeping objects pairs no longer being ↵ | Crozet Sébastien | |
| ignored by the narrow-phase. | |||
| 2020-10-27 | ContactPairFilter: 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-27 | Rename SolverFlags::COMPUTE_FORCES to SolverFlags::COMPUTE_IMPULSES. | Crozet Sébastien | |
| This is closer to what the solver actually does. | |||
| 2020-10-27 | Added user-implementable traits for collision/proximity pair filtering. | Crozet Sébastien | |
| 2020-10-27 | Merge pull request #43 from dimforge/interaction_groups | Sébastien Crozet | |
| Add collision filtering based in bit masks | |||
| 2020-10-27 | Ignore the code block in the InteractionGroups doc. | Crozet Sébastien | |
| 2020-10-27 | Take collision groups into account for ray-casting. | Crozet Sébastien | |
| 2020-10-27 | Take the solver flags into account when collecting contact manifolds to solve. | Crozet Sébastien | |
| 2020-10-27 | Add a construstructor to InteractionGroups + make its methods const. | Crozet Sébastien | |
| 2020-10-27 | Add collision groups demos. | Crozet Sébastien | |
| 2020-10-27 | Add solver flags for controlling whether or not some contacts should be ↵ | Crozet Sébastien | |
| taken into account by the constraints solver. | |||
| 2020-10-27 | Add collision groups to filter collision pairs. | Crozet Sébastien | |
| 2020-10-27 | Merge pull request #42 from dimforge/user_data | Sébastien Crozet | |
| Add a 128-bits user-data attached to colliders and rigid-bodies. | |||
| 2020-10-27 | Add missing comment. | Crozet Sébastien | |
| 2020-10-27 | Add a 128-bits user-data attached to colliders and rigid-bodies. | Crozet Sébastien | |
| 2020-10-27 | Merge pull request #41 from dimforge/cylinder | Sébastien Crozet | |
| Add cylinder and cone support + use a trait-object for shapes. | |||
| 2020-10-27 | Fix 2D compilation. | Crozet Sébastien | |
| 2020-10-27 | Replace the Rounded<S> type by a non-generic RoundCylinder type. | Crozet Sébastien | |
| 2020-10-27 | Add some segment/triangle SAT functions. | Crozet Sébastien | |
| 2020-10-27 | Variable renaming. | Crozet Sébastien | |
| 2020-10-27 | Re-export crossbeam. | Crozet Sébastien | |
