Home
last modified time | relevance | path

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

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