OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bonesPoseChannels
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java
56
* @param
bonesPoseChannels
64
public BoneContext(Structure boneStructure, Matrix4f objectToArmatureMatrix, final Map<Long, Structure>
bonesPoseChannels
, BlenderContext blenderContext) throws BlenderFileException {
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 {
96
this.children.add(new BoneContext(child, this, objectToArmatureMatrix,
bonesPoseChannels
, blenderContext));
99
poseChannel =
bonesPoseChannels
.get(boneStructure.getOldMemoryAddress());
ArmatureHelper.java
86
* @param
bonesPoseChannels
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);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ArmatureModifier.java
106
Map<Long, Structure>
bonesPoseChannels
= new HashMap<Long, Structure>(chanbase.size());
109
bonesPoseChannels
.put(pBone.getOldMemoryAddress(), poseChannel);
120
armatureHelper.buildBones(bonebase.get(i), null, bonesList, objectToArmatureTransformation,
bonesPoseChannels
, blenderContext);
Completed in 911 milliseconds