Examples of DOF


Examples of artofillusion.animation.Joint.DOF

        int id = in.readInt();
        String name = in.readUTF();
        Joint j = new Joint(new CoordinateSystem(in), null, name);
        joint[i] = j;
        j.id = id;
        j.angle1 = j.new DOF(in);
        j.angle2 = j.new DOF(in);
        j.twist = j.new DOF(in);
        j.length = j.new DOF(in);
        j.length.loop = false;
        parentID[i] = in.readInt();
        childID[i] = new int [in.readInt()];
        for (int k = 0; k < childID[i].length; k++)
          childID[i][k] = in.readInt();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.