0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2025-02-01 18:24:54 -05:00

updated readme

This commit is contained in:
Liam 2016-07-04 17:06:34 +01:00 committed by GitHub
parent 7c8f6ced5c
commit a408854ce7

View file

@ -165,16 +165,13 @@ The engine uses the following techniques:
- AABB mid-phase detection - AABB mid-phase detection
- SAT narrow-phase detection - SAT narrow-phase detection
- Iterative sequential impulse solver and position solver - Iterative sequential impulse solver and position solver
- Resting collisions with resting constraints ala Erin Catto's method - Resting collisions using resting constraints (Erin Catto, GDC08)
(GDC08)
- Temporal coherence impulse caching and warming - Temporal coherence impulse caching and warming
- Collision pairs, contacts and impulses maintained with a pair - Collision pairs, contacts and impulses maintained by a pair manager
manager
- Approximate Coulomb friction model using friction constraints - Approximate Coulomb friction model using friction constraints
- Constraints solved with the Gauss-Siedel method - Constraints solved with the Gauss-Siedel method
- Semi-variable time step, synced with rendering - Fixed or variable time step
- A basic sleeping strategy - A basic sleeping strategy
- HTML5 Canvas rendering
For more information see my post on [Game physics for beginners](http://brm.io/game-physics-for-beginners/). For more information see my post on [Game physics for beginners](http://brm.io/game-physics-for-beginners/).