Home
last modified time | relevance | path

Searched refs:dotProduct (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
DPoint.java68 public float dotProduct(Point a, Point b) { in dotProduct() method in Point
87 float dotProduct = dotProduct(a, b); in getAngle() local
88 float cos = Math.min(1.0f, Math.max(-1.0f, dotProduct / dist1 / dist2)); in getAngle()
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/correction/math/
DVector3Test.java44 float dotProduct = Vector3.dot(v1, v2); in testDot() local
45 assertEquals(56f, dotProduct, TOLERANCE); in testDot()
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
Dproximity_info_utils.h101 const float dotProduct = ray1x * ray2x + ray1y * ray2y; in pointToLineSegSquaredDistanceFloat() local
108 const float projectionLengthSqr = dotProduct / lineLengthSqr; in pointToLineSegSquaredDistanceFloat()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
DGeometryMathUtils.java149 public static float dotProduct(float[] a, float[] b) { in dotProduct() method in GeometryMathUtils
164 return dotProduct(a, b) / length; in scalarProjection()