/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/ |
H A D | Complex.py | 19 # the complex number z for which r == z.radius() and phi == z.angle(fullcircle)
26 # z.angle([fullcircle]) -> angle from positive X axis; fullcircle gives units
27 # z.phi([fullcircle]) == z.angle(fullcircle)
173 def angle(self, fullcircle = twopi):
member in class:Complex 176 phi = angle
219 phi = n*self.angle()
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
H A D | ColorWheel.java | 204 float angle = (float)java.lang.Math.atan2(y, x); 205 // need to turn angle [-PI ... PI] into unit [0....1] 206 float unit = angle/(2*PI);
|
/device/generic/goldfish-opengl/tests/gles_android_wrapper/ |
H A D | gles.cpp | 211 void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) argument 213 getDispatch()->glRotatef(angle, x, y, z); 661 void glRotatex(GLfixed angle, GLfixed x, GLfixed y, GLfixed z) argument 663 getDispatch()->glRotatex(angle, x, y, z); 1001 void glRotatexOES(GLfixed angle, GLfixed x, GLfixed y, GLfixed z) argument 1003 getDispatch()->glRotatexOES(angle, x, y, z);
|
/device/generic/goldfish-opengl/system/GLESv1_enc/ |
H A D | gl_entry.cpp | 39 void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z); 128 void glRotatex(GLfixed angle, GLfixed x, GLfixed y, GLfixed z); 216 void glRotatexOES(GLfixed angle, GLfixed x, GLfixed y, GLfixed z); 493 void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) argument 496 ctx->glRotatef(ctx, angle, x, y, z); 1031 void glRotatex(GLfixed angle, GLfixed x, GLfixed y, GLfixed z) argument 1034 ctx->glRotatex(ctx, angle, x, y, z); 1559 void glRotatexOES(GLfixed angle, GLfixed x, GLfixed y, GLfixed z) argument 1562 ctx->glRotatexOES(ctx, angle, x, y, z);
|
H A D | gl_enc.cpp | 939 void glRotatef_enc(void *self , GLfloat angle, GLfloat x, GLfloat y, GLfloat z) argument 957 memcpy(ptr, &angle, 4); ptr += 4; 3424 void glRotatex_enc(void *self , GLfixed angle, GLfixed x, GLfixed y, GLfixed z) argument 3442 memcpy(ptr, &angle, 4); ptr += 4; 5912 void glRotatexOES_enc(void *self , GLfixed angle, GLfixed x, GLfixed y, GLfixed z) argument 5930 memcpy(ptr, &angle, 4); ptr += 4;
|
/device/generic/goldfish-opengl/system/include/GLES/ |
H A D | gl.h | 624 GL_API void GL_APIENTRY glRotatef (GLfloat angle, GLfloat x, GLfloat y, GLfloat z); 716 GL_API void GL_APIENTRY glRotatex (GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
|
H A D | glext.h | 698 GL_API void GL_APIENTRY glRotatexOES (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); 738 typedef void (GL_APIENTRYP PFNGLROTATEXOESPROC) (GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
|