OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BoneContext
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java
23
public class
BoneContext
{
35
private
BoneContext
parent;
37
private List<
BoneContext
> children = new ArrayList<
BoneContext
>();
64
public
BoneContext
(Structure boneStructure, Matrix4f objectToArmatureMatrix, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException {
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));
124
for (
BoneContext
child : this.children) {
182
for (
BoneContext
child : children) {
[
all
...]
ArmatureHelper.java
95
BoneContext
bc = new
BoneContext
(boneStructure, arbt, bonesPoseChannels, blenderContext);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
BlenderContext.java
49
import com.jme3.scene.plugins.blender.animations.
BoneContext
;
119
protected Map<Long,
BoneContext
> boneContexts = new HashMap<Long,
BoneContext
>();
573
* @param
boneContext
576
public void setBoneContext(Long boneOMA,
BoneContext
boneContext
) {
577
this.boneContexts.put(boneOMA,
boneContext
);
588
public
BoneContext
getBoneContext(Long boneOMA) {
Completed in 168 milliseconds