Uses of Class
hmi.physics.JointType

Packages that use JointType
hmi.environment.avatars This package contains code for loading avatars, mixed systems, face bindings, etc. 
hmi.physics Support for physical simulation of humanoids and other objects; also supports inverse dynamics and physical controllers. 
hmi.physics.assembler   
hmi.physics.ode   
 

Uses of JointType in hmi.environment.avatars
 

Methods in hmi.environment.avatars with parameters of type JointType
 void MixedSystemAssembler.createFromGNode(GNode node, String[] fdSegments, String rootSegment, JointType[] types, float[] axes, float[] limits1, float[] limits2, float[] limits3, String[] idSegments)
           
 

Uses of JointType in hmi.physics
 

Fields in hmi.physics declared as JointType
 JointType PhysicalSegment.jointType
           
protected  JointType PhysicalJoint.type
           
 

Methods in hmi.physics that return JointType
 JointType PhysicalJoint.getType()
           
static JointType JointType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JointType[] JointType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in hmi.physics with parameters of type JointType
PhysicalJoint(JointType t, String n)
          Constructor
 

Uses of JointType in hmi.physics.assembler
 

Methods in hmi.physics.assembler with parameters of type JointType
 void PhysicalHumanoidAssembler.createFromGNode(GNode node, String[] segments, String[] endSegments, String rootSegment, JointType[] types, float[] axes, float[] limits1, float[] limits2, float[] limits3)
           
 

Uses of JointType in hmi.physics.ode
 

Constructors in hmi.physics.ode with parameters of type JointType
OdeJoint(JointType t, String name, org.odejava.World w, org.odejava.JointGroup jg)