HomeSort by relevance Sort by last modified time
    Searched refs:boneStructure (Results 1 - 2 of 2) sorted by null

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java 25 private Structure boneStructure;
52 * @param boneStructure
64 public BoneContext(Structure boneStructure, Matrix4f objectToArmatureMatrix, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException {
65 this(boneStructure, null, objectToArmatureMatrix, bonesPoseChannels, blenderContext);
71 * @param boneStructure
85 private BoneContext(Structure boneStructure, BoneContext parent, Matrix4f objectToArmatureMatrix, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException {
87 this.boneStructure = boneStructure;
88 boneName = boneStructure.getFieldValue("name").toString();
90 armatureMatrix = objectHelper.getMatrix(boneStructure, "arm_mat", true);
    [all...]
ArmatureHelper.java 80 * @param boneStructure
94 public void buildBones(Structure boneStructure, Bone parent, List<Bone> result, Matrix4f arbt, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException {
95 BoneContext bc = new BoneContext(boneStructure, arbt, bonesPoseChannels, blenderContext);

Completed in 672 milliseconds