correct summary of body types

This commit is contained in:
Irlan 2018-05-25 16:38:54 -03:00
parent 8b775361a9
commit 03be41d05b

View File

@ -33,9 +33,9 @@ struct b3ShapeDef;
struct b3MassData; struct b3MassData;
struct b3JointEdge; struct b3JointEdge;
// Static bodies have zero mass and velocity, and therefore they can't move. // Static body: Has zero mass, can be moved manually.
// Kinematic bodies are't moved by external and internal forces but can be moved by contact forces. // Kinematic body: Has zero mass, non-zero velocity, can be moved by the solver.
// Dynamic bodies have non-zero mass and can move due to internal and external forces. // Dynamic body: Has non-zero mass, non-zero velocity determined by force, can be moved by the solver.
enum b3BodyType enum b3BodyType
{ {
e_staticBody, e_staticBody,