HomeSort by relevance Sort by last modified time
    Searched defs:crossProduct (Results 1 - 4 of 4) sorted by null

  /external/deqp/modules/glshared/
glsRasterizationTestUtil.cpp 88 const float crossProduct = (u.x() * v.y() - u.y() * v.x());
90 return crossProduct > 0.0f;
116 const float crossProduct = (line.x() * v.y() - line.y() * v.x());
123 if (crossProduct * crossProduct > maxPixelDistanceSquared * tcu::lengthSquared(line))
179 const float crossProduct = (u.x() * v.y() - u.y() * v.x());
181 return crossProduct / 2.0f;
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/renderers/
GLArrowSensorTestRenderer.java 181 crossProduct(event.values, Z_AXIS, mCrossProd);
203 public static void crossProduct(float[] left, float[] right, float[] out) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Geometry.js 112 WebInspector.Geometry.crossProduct = function(u, v)
  /external/deqp/framework/referencerenderer/
rrRasterizer.cpp 154 const deInt64 crossProduct = (u.x() * v.y() - u.y() * v.x());
155 return crossProduct < 0;
163 const deInt64 crossProduct = (u.x() * v.y() - u.y() * v.x());
164 return crossProduct > 0;
172 const deInt64 crossProduct = (u.x() * v.y() - u.y() * v.x());
173 return crossProduct == 0; // cross product == 0
    [all...]

Completed in 167 milliseconds