OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:newz
(Results
1 - 3
of
3
) sorted by null
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
CubeWallpaper2.java
262
float
newz
= (float)(Math.cos(xrot) * z - Math.sin(xrot) * y);
local
265
float newx = (float)(Math.sin(yrot) *
newz
+ Math.cos(yrot) * x);
266
newz
= (float)(Math.cos(yrot) *
newz
- Math.sin(yrot) * x);
269
float screenX = newx / (4 -
newz
/ 400);
270
float screenY = newy / (4 -
newz
/ 400);
/frameworks/native/libs/input/
Input.cpp
426
float
newZ
= matrix[6] * x + matrix[7] * y + matrix[8];
427
if (
newZ
) {
428
newZ
= 1.0f /
newZ
;
430
*outX = newX *
newZ
;
431
*outY = newY *
newZ
;
/external/javassist/tutorial/
tutorial2.html
80
parameter <code>
newZ
</code> to a method:
87
<ul><pre>void move(int newX, int newY, int
newZ
) {
88
// do what you want with
newZ
.
[
all
...]
Completed in 186 milliseconds