Searched refs:v1x (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/util/ |
D | MathUtils.java | 127 public static float dot(float v1x, float v1y, float v2x, float v2y) { in dot() argument 128 return v1x * v2x + v1y * v2y; in dot() 131 public static float cross(float v1x, float v1y, float v2x, float v2y) { in cross() argument 132 return v1x * v2y - v1y * v2x; in cross()
|
/frameworks/base/graphics/java/android/graphics/ |
D | ColorSpace.java | 4585 float v1x = (float) (ONE_THIRD + cr1 * f1); 4587 float v1z = 1 - v1x - v1y; 4602 colors[colorIndex ] = computeColor(color, v1x, v1y, v1z, colorSpace); 4611 vertices[vertexIndex++] = v1x; 4617 vertices[vertexIndex++] = v1x;
|