/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
Constraint.java | 11 import com.jme3.scene.plugins.blender.animations.Ipo;
31 /** The ipo object defining influence. */
32 protected final Ipo ipo;
field in class:Constraint 44 * the ipo curve of the influence factor
52 Ipo influenceIpo, BlenderContext blenderContext) throws BlenderFileException {
74 this.ipo = influenceIpo;
|
ConstraintHelper.java | 12 import com.jme3.scene.plugins.blender.animations.Ipo;
81 Map<String, Map<String, Ipo>> constraintsIpos = new HashMap<String, Map<String, Ipo>>();
89 Map<String, Ipo> ipos = new HashMap<String, Ipo>();
93 Pointer pIpo = (Pointer) constraintChannel.getFieldValue("ipo");
96 Ipo ipo = ipoHelper.fromIpoStructure(pIpo.fetchData(blenderContext.getInputStream()).get(0), blenderContext);
local 97 ipos.put(constraintName, ipo);
119 Map<String, Ipo> ipoMap = constraintsIpos.get(name); 120 Ipo ipo = ipoMap==null ? null : ipoMap.get(constraintName); local 140 Ipo ipo = objectConstraintsIpos!=null ? objectConstraintsIpos.get(constraintName) : null; local [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/ |
ModifierHelper.java | 42 import com.jme3.scene.plugins.blender.animations.Ipo;
106 // either described by action or by ipo of the object)
146 Pointer pChannelIpo = (Pointer) actionChannels.get(0).getFieldValue("ipo");
148 Ipo ipo = ipoHelper.fromIpoStructure(ipoStructure, blenderContext);
local 149 result = new ObjectAnimationModifier(ipo, action.getName(), objectStructure.getOldMemoryAddress(), blenderContext);
155 Pointer pIpo = (Pointer) objectStructure.getFieldValue("ipo");
158 Ipo ipo = ipoHelper.fromIpoStructure(ipoStructure, blenderContext);
local 159 result = new ObjectAnimationModifier(ipo, objectStructure.getName(), objectStructure.getOldMemoryAddress(), blenderContext); 188 Ipo ipo = ipoHelper.fromAction(actionStructure, blenderContext); local [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/ |
ArmatureHelper.java | 203 Ipo ipo = new Ipo(bezierCurves, fixUpAxis);
local 204 tracks.add((BoneTrack) ipo.calculateTrack(boneIndex, 0, ipo.getLastFrame(), fps, false));
234 Pointer p = (Pointer) bActionChannel.getFieldValue("ipo");
237 Ipo ipo = ipoHelper.fromIpoStructure(ipoStructure, blenderContext);
local 238 tracks.add((BoneTrack) ipo.calculateTrack(boneIndex, 0, ipo.getLastFrame(), fps, false)); [all...] |