Uses of Class
com.threed.jpct.skeleton.SimpleBone

Packages that use SimpleBone
com.threed.jpct.skeleton   
 

Uses of SimpleBone in com.threed.jpct.skeleton
 

Methods in com.threed.jpct.skeleton that return SimpleBone
 SimpleBone SimpleSkeleton.getBone(int id)
          Returns a bone with the same id, or null if nothing is found.
 SimpleBone SimpleSkeleton.getBone(java.lang.String name)
          Returns a bone with the same name, or null if nothing is found.
 SimpleBone[] SimpleSkeleton.getBones()
          Return skeleton's bone array.
 SimpleBone SimpleBone.getParent()
          Returns the parent bone.
 

Methods in com.threed.jpct.skeleton that return types with arguments of type SimpleBone
 java.util.Hashtable<java.lang.Integer,SimpleBone> SimpleBone.getChildren()
          Returns a hashtable containing all of the bone's children.
 

Methods in com.threed.jpct.skeleton with parameters of type SimpleBone
 void VertexAssignment.addBone(SimpleBone bone, float weight)
          Adds a bone to the assignment array.
 void SimpleBone.addChild(SimpleBone child)
          Adds a child reference to the bone.
 boolean VertexAssignment.assignedTo(SimpleBone bone)
          Returns true if the bone has been assigned, and false if the bone is not assigned.
 void SimpleSkeleton.setBones(SimpleBone[] bones)
          Sets the bone array of this skeleton.
 void SimpleBone.setParent(SimpleBone parent)
          Sets the parent bone of this bone.