HomeSort by relevance Sort by last modified time
    Searched refs:ownerTransform (Results 1 - 6 of 6) sorted by null

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintLocLike.java 83 Transform ownerTransform = this.owner.getTransform();
84 Vector3f ownerLocation = ownerTransform.getTranslation();
86 this.owner.applyTransform(ownerTransform);
ConstraintLocLimit.java 93 Transform ownerTransform = this.owner.getTransform();
94 Vector3f ownerLocation = ownerTransform.getTranslation();
96 this.owner.applyTransform(ownerTransform);
ConstraintRotLike.java 73 Transform ownerTransform = this.owner.getTransform();
74 Quaternion ownerRotation = ownerTransform.getRotation();
76 this.owner.applyTransform(ownerTransform);
ConstraintSizeLike.java 75 Transform ownerTransform = this.owner.getTransform();
76 this.sizeLike(ownerTransform.getScale(), targetTransform.getScale(), ipo.calculateValue(0));
77 this.owner.applyTransform(ownerTransform);
ConstraintSizeLimit.java 93 Transform ownerTransform = this.owner.getTransform();
94 this.sizeLimit(ownerTransform.getScale(), ipo.calculateValue(0));
95 this.owner.applyTransform(ownerTransform);
ConstraintRotLimit.java 101 Transform ownerTransform = this.owner.getTransform();
102 float[] angles = ownerTransform.getRotation().toAngles(null);
104 ownerTransform.getRotation().fromAngles(angles);
105 this.owner.applyTransform(ownerTransform);

Completed in 723 milliseconds