Searched refs:v2x (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 | 4589 float v2x = (float) (ONE_THIRD + cr1 * f2); 4591 float v2z = 1 - v2x - v2y; 4603 colors[colorIndex + 1] = computeColor(color, v2x, v2y, v2z, colorSpace); 4613 vertices[vertexIndex++] = v2x;
|