| java.lang.Object com.db.hanim.HAnimJointTree
HAnimJointTree | final public class HAnimJointTree (Code) | | This class is to implement a HAnimJointTree checker. Basically, given two Joints, it ouputs an boolean if the first Joint has the second Joint as child.
author: Silvere Martin-Michiellot version: 1.1 |
Constructor Summary | |
public | HAnimJointTree() Construct a new HAnimJointTree. |
Method Summary | |
public static boolean | checkChild(Joint joint1, Joint joint2) Verify that according to the H-Anim specification, a Joint is the child of the other in the standard joint hierarchy. |
HAnimJointTree | public HAnimJointTree()(Code) | | Construct a new HAnimJointTree. This class has only to be instanciated once.
|
checkChild | public static boolean checkChild(Joint joint1, Joint joint2)(Code) | | Verify that according to the H-Anim specification, a Joint is the child of the other in the standard joint hierarchy. See the H-Anim specification for more details.
Parameters: joint1 - a standard Joint believed to be the parent Parameters: joint2 - a standard Joint believed to be the child the boolean that if true if and only if the Joint joint1 has a child Joint joint2 |
|
|