Searched defs:bonesPoseChannels (Results 1 - 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
H A DArmatureHelper.java86 * @param bonesPoseChannels
94 public void buildBones(Structure boneStructure, Bone parent, List<Bone> result, Matrix4f arbt, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException { argument
95 BoneContext bc = new BoneContext(boneStructure, arbt, bonesPoseChannels, blenderContext);
H A DBoneContext.java56 * @param bonesPoseChannels
64 public BoneContext(Structure boneStructure, Matrix4f objectToArmatureMatrix, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException { argument
65 this(boneStructure, null, objectToArmatureMatrix, bonesPoseChannels, blenderContext);
77 * @param bonesPoseChannels
85 private BoneContext(Structure boneStructure, BoneContext parent, Matrix4f objectToArmatureMatrix, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException { argument
96 this.children.add(new BoneContext(child, this, objectToArmatureMatrix, bonesPoseChannels, blenderContext));
99 poseChannel = bonesPoseChannels.get(boneStructure.getOldMemoryAddress());

Completed in 379 milliseconds