OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:crossProduct
(Results
1 - 5
of
5
) sorted by null
/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/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
246
const deInt64
crossProduct
= (u.x() * v.y() - u.y() * v.x());
248
//
crossProduct
= |p| |l| sin(theta)
250
// => distanceFromLine =
crossProduct
/ |l|
254
// =>
crossProduct
^2 / |l|^2 > C^
[
all
...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
Vector3D.java
303
* Vector3D j = Vector3D.
crossProduct
(k, i);
349
Vector3D v3 =
crossProduct
(v1, v2);
460
public static Vector3D
crossProduct
(Vector3D v1, Vector3D v2) {
Rotation.java
372
Vector3D u3 = Vector3D.
crossProduct
(u1, u2);
373
Vector3D v3 = Vector3D.
crossProduct
(v1, v2);
[
all
...]
/external/deqp/framework/common/
tcuRasterizationVerifier.cpp
84
const float
crossProduct
= (u.x() * v.y() - u.y() * v.x());
86
return
crossProduct
> 0.0f;
112
const float
crossProduct
= (line.x() * v.y() - line.y() * v.x());
119
if (
crossProduct
*
crossProduct
> maxPixelDistanceSquared * tcu::lengthSquared(line))
175
const float
crossProduct
= (u.x() * v.y() - u.y() * v.x());
177
return
crossProduct
/ 2.0f;
[
all
...]
Completed in 691 milliseconds