Home
last modified time | relevance | path

Searched refs:xDifference (Results 1 – 2 of 2) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/
DMathsUtils.java231 float xDifference = point2[X] - point1[X]; in distanceCalculationOnXYPlane() local
232 return (float) Math.sqrt((yDifference * yDifference) + (xDifference * xDifference)); in distanceCalculationOnXYPlane()
245 float xDifference = point2[X] - point1[X]; in distanceCalculationInXYZSpace() local
247 (xDifference * xDifference)); in distanceCalculationInXYZSpace()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/
DComplexMovementPath.java277 float xDifference, yDifference, zDifference; in hasRingBeenEntered() local
280 xDifference = Math.abs(mRings.get(i).getLocation()[X] - location[X]); in hasRingBeenEntered()
283 if (xDifference < 0.17 && yDifference < 0.17 && zDifference < 0.17) { in hasRingBeenEntered()