Searched refs:tempX (Results 1 – 5 of 5) sorted by relevance
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
D | TestBrickTower.java | 147 double tempX = 0; in initTower() local 161 tempX = Math.sin(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/ |
D | TestBatchNodeTower.java | 161 double tempX = 0; in initTower() local 175 tempX = Math.sin(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/ |
D | Quaternion.java | 859 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() 941 float tempX, tempY; in multLocal() local 942 tempX = w * w * v.x + 2 * y * w * v.z - 2 * z * w * v.y + x * x * v.x in multLocal() 949 v.x = tempX; in multLocal()
|
/external/sqlite/dist/ |
D | sqlite3.c | 85404 Expr tempX; /* Temporary expression node */ 85596 tempX.op = TK_INTEGER; 85597 tempX.flags = EP_IntValue|EP_TokenOnly; 85598 tempX.u.iValue = 0; 85599 r1 = sqlite3ExprCodeTemp(pParse, &tempX, ®Free1); 85933 tempX = *pX; 85935 exprToRegister(&tempX, sqlite3ExprCodeTemp(pParse, pX, ®Free1)); 85938 opCompare.pLeft = &tempX;
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 85386 Expr tempX; /* Temporary expression node */ 85578 tempX.op = TK_INTEGER; 85579 tempX.flags = EP_IntValue|EP_TokenOnly; 85580 tempX.u.iValue = 0; 85581 r1 = sqlite3ExprCodeTemp(pParse, &tempX, ®Free1); 85915 tempX = *pX; 85917 exprToRegister(&tempX, sqlite3ExprCodeTemp(pParse, pX, ®Free1)); 85920 opCompare.pLeft = &tempX;
|