OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fixUpAxis
(Results
1 - 4
of
4
) sorted by null
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
AbstractBlenderHelper.java
55
protected boolean
fixUpAxis
;
64
* @param
fixUpAxis
67
public AbstractBlenderHelper(String blenderVersion, boolean
fixUpAxis
) {
69
this.
fixUpAxis
=
fixUpAxis
;
70
if(
fixUpAxis
) {
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java
31
private boolean
fixUpAxis
;
92
fixUpAxis
= blenderContext.getBlenderKey().isFixUpAxis();
113
} else if (
fixUpAxis
) {
137
if (
fixUpAxis
) {
Ipo.java
39
protected boolean
fixUpAxis
;
47
public Ipo(BezierCurve[] bezierCurves, boolean
fixUpAxis
) {
49
this.
fixUpAxis
=
fixUpAxis
;
155
if (
fixUpAxis
&& spatialTrack) {
162
translation[
fixUpAxis
&& spatialTrack ? 1 : 2] = (float) value;
172
if (
fixUpAxis
) {
179
objectRotation[
fixUpAxis
? 1 : 2] = (float) value * degreeToRadiansFactor;
187
if (
fixUpAxis
&& spatialTrack) {
194
scale[
fixUpAxis
&& spatialTrack ? 1 : 2] = (float) value;
[
all
...]
/external/jmonkeyengine/engine/src/blender/com/jme3/asset/
BlenderKey.java
84
protected boolean
fixUpAxis
= true;
298
* @param
fixUpAxis
301
public void setFixUpAxis(boolean
fixUpAxis
) {
302
this.
fixUpAxis
=
fixUpAxis
;
311
return
fixUpAxis
;
361
oc.write(
fixUpAxis
, "fix-up-axis", true);
379
fixUpAxis
= ic.readBoolean("fix-up-axis", true);
394
result = prime * result + (
fixUpAxis
? 1231 : 1237);
437
if (
fixUpAxis
!= other.fixUpAxis) {
[
all
...]
Completed in 2664 milliseconds