Home
last modified time | relevance | path

Searched refs:tempZ (Results 1 – 3 of 3) sorted by relevance

/external/jmonkeyengine/engine/src/test/jme3test/bullet/
DTestBrickTower.java149 double tempZ = 0; in initTower() local
160 tempZ = Math.cos(Math.toRadians(angle))*radius; in initTower()
162 System.out.println("x="+((float)(tempX))+" y="+((float)(tempY))+" z="+(float)(tempZ)); in initTower()
163 Vector3f vt = new Vector3f((float)(tempX), (float)(tempY), (float)(tempZ)); in initTower()
/external/jmonkeyengine/engine/src/test/jme3test/batching/
DTestBatchNodeTower.java163 double tempZ = 0; in initTower() local
174 tempZ = Math.cos(Math.toRadians(angle))*radius; in initTower()
176 System.out.println("x="+((float)(tempX))+" y="+((float)(tempY))+" z="+(float)(tempZ)); in initTower()
177 Vector3f vt = new Vector3f((float)(tempX), (float)(tempY), (float)(tempZ)); in initTower()
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DQuaternion.java859 float tempX = x, tempY = y, tempZ = z, tempW = w; in apply() local
861 x = oldX * tempW + oldY * tempZ - oldZ * tempY + oldW * tempX; in apply()
862 y = -oldX * tempZ + oldY * tempW + oldZ * tempX + oldW * tempY; in apply()
863 z = oldX * tempY - oldY * tempX + oldZ * tempW + oldW * tempZ; in apply()
864 w = -oldX * tempX - oldY * tempY - oldZ * tempZ + oldW * tempW; in apply()