aboutsummaryrefslogtreecommitdiff
path: root/src/geometry
AgeCommit message (Collapse)Author
2021-07-13Remove some debug printsbroken-perf-experimentsCrozet Sébastien
2021-07-11Various broken performance experimentsCrozet Sébastien
2021-06-09Derive Clone for IslandManagerWaridley
also fix typo
2021-06-08Fix collider removal from narrow-phase when the same collider is listed twice.Crozet Sébastien
2021-06-02Release v0.9.0v0.9.0Crozet 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 #176 from sdfgeoff/add_collider_shared_shape_methodSébastien Crozet
Created a method to retrieve the SharedShape from a collider
2021-06-02Fix tests and wasm build.Crozet Sébastien
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-01Rework the event systemCrozet Sébastien
2021-05-25Add prelude + use vectors for setting linvel/translation in buildersCrozet Sébastien
2021-05-06Add #[must_use] to builders, expose more fieldsDasEtwas
2021-05-01Fix crash in broad-phase after shape modification.Crozet Sébastien
Fix #180 and #177
2021-04-30Add comments.Crozet Sébastien
2021-04-29Fix tests.Crozet Sébastien
2021-04-29Restore the collision pipelineCrozet Sébastien
2021-04-27Fix some warnings.Crozet Sébastien
2021-04-26Split rigid-bodies and colliders into multiple componentsCrozet Sébastien
2021-04-18Created a method to retrieve the SharedShape from a colliderGeoffrey Irons
In my case this is for creating a compound shape from a set of existing colliders
2021-04-03Add comment regarding the fix.Crozet Sébastien
2021-04-03Fix crash caused by a collider being remove before the first timestep.Crozet Sébastien
2021-04-02Fix determinism problem in the broad-phase after snapshot restoration.Crozet Sébastien
2021-04-02Release v0.7.0Crozet Sébastien
2021-03-31ColliderSet::handle_user_changes - don't drain the set of modified colliders.Crozet Sébastien
2021-03-31Fix tests.Crozet Sébastien
2021-03-31Make the collider shape mutable.Crozet Sébastien
2021-03-30CCD: take angular motion and penetration depth into account in various ↵Crozet Sébastien
thresholds.
2021-03-29Allow collider modification after its insersion to the ColliderSet.Crozet Sébastien
2021-03-28Small refactoring of the PhysicsPipeline.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-26Fix bug wher ethe broad-phase could miss some contacts pairs.Crozet Sébastien
2021-03-26First working version of non-linear CCD based on single-substep motion-clamping.Crozet Sébastien
2021-03-17Fix the last few bugs and unbounded memory usage.Crozet Sébastien
2021-03-13Experiment with a smaller region power basis.Crozet Sébastien
2021-03-13Some tunning of the way layers are attributed to a collider.Crozet Sébastien
2021-03-13First complete implementation of the hierarchical SAP.Crozet Sébastien
2021-03-08Start implementing SAPLayer creation and insertion.Crozet Sébastien
2021-03-08Start introducing SAP layers.Crozet Sébastien
2021-03-08Split the broad-phase code into multiple files.Crozet Sébastien
2021-03-08Merge pull request #141 from EmbarkStudios/per-collider-mass-propsSébastien Crozet
Per collider mass props
2021-03-08Store either density or mass properties but not bothEmil Ernerfeldt
2021-03-08docstring/spellingEmil Ernerfeldt
Co-authored-by: Sébastien Crozet <sebastien@crozet.re>
2021-03-08docstring/spellingEmil Ernerfeldt
Co-authored-by: Sébastien Crozet <sebastien@crozet.re>
2021-03-08docstring/spellingEmil Ernerfeldt
Co-authored-by: Sébastien Crozet <sebastien@crozet.re>
2021-03-08docstring/spellingEmil Ernerfeldt
Co-authored-by: Sébastien Crozet <sebastien@crozet.re>
2021-03-07Projection friction impulses on an implicit cone instead of a pyramidal ↵Crozet Sébastien
approximation.
2021-03-05Use Box<Option<MassProperties>> instead to save on memoryEmil Ernerfeldt
2021-03-05Add ability to set MassProperties for each ColliderBuilderEmil Ernerfeldt
Fix https://github.com/dimforge/rapier/issues/132
2021-03-02Fix determinism issue after restoring a snapshot.Crozet Sébastien