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

  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
GImpactCollisionShape.java 53 protected Vector3f worldScale;
70 private void createCollisionMesh(Mesh mesh, Vector3f worldScale) {
71 this.worldScale = worldScale;
92 capsule.write(worldScale, "worldScale", new Vector3f(1, 1, 1));
105 worldScale = (Vector3f) capsule.readSavable("worldScale", new Vector3f(1, 1, 1));
127 cShape.setLocalScaling(Converter.convert(worldScale));
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Bone.java 87 private Vector3f worldScale = new Vector3f();
224 return worldScale;
332 // worldScale.set(localScale);
333 parent.worldScale.mult(localScale, worldScale);
338 worldPos.multLocal(parent.worldScale);
343 worldScale.set(localScale);
349 attachNode.setLocalScale(worldScale);
386 worldBindInverseScale.divideLocal(worldScale);
420 Vector3f scale = worldScale.mult(worldBindInverseScale, tmp3)
    [all...]

Completed in 200 milliseconds