| Package | Description |
|---|---|
| com.jme3.bullet | |
| com.jme3.bullet.animation |
A dynamic animation control and some associated classes.
|
| com.jme3.bullet.debug | |
| com.jme3.bullet.joints | |
| com.jme3.bullet.objects |
| Modifier and Type | Method and Description |
|---|---|
java.util.Collection<PhysicsJoint> |
PhysicsSpace.getJointList()
Copy the list of physics joints that have been added to this space and
not yet removed.
|
| Modifier and Type | Method and Description |
|---|---|
PhysicsJoint |
PhysicsLink.getJoint()
Access the joint between this link's rigid body and that of its parent.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
PhysicsLink.setJoint(PhysicsJoint joint)
Assign a physics joint to this link, or cancel the assigned joint.
|
| Modifier and Type | Field and Description |
|---|---|
protected PhysicsJoint |
BulletJointDebugControl.body |
| Modifier and Type | Field and Description |
|---|---|
protected java.util.HashMap<PhysicsJoint,com.jme3.scene.Spatial> |
BulletDebugAppState.joints
map joints to visualizations
|
| Constructor and Description |
|---|
BulletJointDebugControl(BulletDebugAppState debugAppState,
PhysicsJoint body)
Instantiate an enabled control to visualize the specified joint.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ConeJoint
A joint based on Bullet's btConeTwistConstraint.
|
class |
HingeJoint
A joint based on Bullet's btHingeConstraint.
|
class |
Point2PointJoint
A joint based on Bullet's btPoint2PointConstraint.
|
class |
SixDofJoint
A joint based on Bullet's btGeneric6DofConstraint.
|
class |
SixDofSpringJoint
A 6 degree-of-freedom joint based on Bullet's btGeneric6DofSpringConstraint.
|
class |
SliderJoint
A slider joint based on Bullet's btSliderConstraint.
|
| Modifier and Type | Field and Description |
|---|---|
protected java.util.ArrayList<PhysicsJoint> |
PhysicsRigidBody.joints
joint list
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<PhysicsJoint> |
PhysicsRigidBody.getJoints()
Access the list of joints connected with this body.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PhysicsRigidBody.addJoint(PhysicsJoint joint)
Do not invoke directly! Joints are added automatically when created.
|
void |
PhysicsRigidBody.removeJoint(PhysicsJoint joint)
Do not invoke directly! Joints are removed automatically when destroyed.
|