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

  /device/lge/mako/camera/
QCameraParameters.cpp 352 int tempX, tempY;
353 if (parse_pair(p, &tempX, &tempY, 'x') == 0) {
355 *y = tempY;
376 int tempX, tempY;
377 if (parse_pair(p, &tempX, &tempY, 'x') == 0) {
379 *y = tempY;
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestBrickTower.java 148 double tempY = 0;
154 tempY+=brickHeight*2;
156 tempY=brickHeight;
162 System.out.println("x="+((float)(tempX))+" y="+((float)(tempY))+" z="+(float)(tempZ));
163 Vector3f vt = new Vector3f((float)(tempX), (float)(tempY), (float)(tempZ));
  /external/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNodeTower.java 162 double tempY = 0;
168 tempY+=brickHeight*2;
170 tempY=brickHeight;
176 System.out.println("x="+((float)(tempX))+" y="+((float)(tempY))+" z="+(float)(tempZ));
177 Vector3f vt = new Vector3f((float)(tempX), (float)(tempY), (float)(tempZ));
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java 859 float tempX = x, tempY = y, tempZ = z, tempW = w;
861 x = oldX * tempW + oldY * tempZ - oldZ * tempY + oldW * tempX;
862 y = -oldX * tempZ + oldY * tempW + oldZ * tempX + oldW * tempY;
863 z = oldX * tempY - oldY * tempX + oldZ * tempW + oldW * tempZ;
864 w = -oldX * tempX - oldY * tempY - oldZ * tempZ + oldW * tempW;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCrop.java 624 float tempY = counter[1] + vec[1] * dash_len;
626 canvas.drawLine(counter[0], counter[1], tempX, tempY, gPaint);
629 counter[1] = tempY;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PositionController.java 482 float tempY = (tapY - b.mCurrentY) / b.mCurrentScale;
485 int y = (int) (-tempY * targetScale + 0.5f);
    [all...]

Completed in 426 milliseconds