#include <b2RevoluteJoint.h>
Public Member Functions | |
b2RevoluteJointDef () | |
void | Initialize (b2Body *bodyA, b2Body *bodyB, const b2Vec2 &anchor) |
Public Attributes | |
bool | enableLimit |
A flag to enable joint limits. | |
bool | enableMotor |
A flag to enable the joint motor. | |
b2Vec2 | localAnchorA |
The local anchor point relative to bodyA's origin. | |
b2Vec2 | localAnchorB |
The local anchor point relative to bodyB's origin. | |
float32 | lowerAngle |
The lower angle for the joint limit (radians). | |
float32 | maxMotorTorque |
float32 | motorSpeed |
The desired motor speed. Usually in radians per second. | |
float32 | referenceAngle |
The bodyB angle minus bodyA angle in the reference state (radians). | |
float32 | upperAngle |
The upper angle for the joint limit (radians). |
Revolute joint definition. This requires defining an anchor point where the bodies are joined. The definition uses local anchor points so that the initial configuration can violate the constraint slightly. You also need to specify the initial relative angle for joint limits. This helps when saving and loading a game. The local anchor points are measured from the body's origin rather than the center of mass because: 1. you might not know where the center of mass will be. 2. if you add/remove shapes from a body and recompute the mass, the joints will be broken.
Definition at line 35 of file b2RevoluteJoint.h.
b2RevoluteJointDef::b2RevoluteJointDef | ( | ) | [inline] |
Definition at line 37 of file b2RevoluteJoint.h.
void b2RevoluteJointDef::Initialize | ( | b2Body * | bodyA, |
b2Body * | bodyB, | ||
const b2Vec2 & | anchor | ||
) |
Initialize the bodies, anchors, and reference angle using a world anchor point.
Definition at line 36 of file b2RevoluteJoint.cpp.
A flag to enable joint limits.
Definition at line 65 of file b2RevoluteJoint.h.
A flag to enable the joint motor.
Definition at line 74 of file b2RevoluteJoint.h.
The local anchor point relative to bodyA's origin.
Definition at line 56 of file b2RevoluteJoint.h.
The local anchor point relative to bodyB's origin.
Definition at line 59 of file b2RevoluteJoint.h.
The lower angle for the joint limit (radians).
Definition at line 68 of file b2RevoluteJoint.h.
The maximum motor torque used to achieve the desired motor speed. Usually in N-m.
Definition at line 81 of file b2RevoluteJoint.h.
The desired motor speed. Usually in radians per second.
Definition at line 77 of file b2RevoluteJoint.h.
The bodyB angle minus bodyA angle in the reference state (radians).
Definition at line 62 of file b2RevoluteJoint.h.
The upper angle for the joint limit (radians).
Definition at line 71 of file b2RevoluteJoint.h.