Searched refs:tempZ (Results 1 – 3 of 3) sorted by relevance
149 double tempZ = 0; in initTower() local160 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()
163 double tempZ = 0; in initTower() local174 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()
859 float tempX = x, tempY = y, tempZ = z, tempW = w; in apply() local861 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()