Home
last modified time | relevance | path

Searched refs:yawPitchRoll (Results 1 – 10 of 10) sorted by relevance

/packages/modules/Uwb/service/tests/src/com/android/server/uwb/correction/math/
DQuaternionTest.java35 Quaternion quaternion = Quaternion.yawPitchRoll(0.5f, 1f, 1.5f); in testYawPitchRoll()
45 quaternion = Quaternion.yawPitchRoll(F_HALF_PI, 0, 0); in testYawPitchRoll()
48 quaternion = Quaternion.yawPitchRoll(0, F_HALF_PI, 0); in testYawPitchRoll()
51 quaternion = Quaternion.yawPitchRoll(0, 0, F_HALF_PI); in testYawPitchRoll()
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/correction/primers/
DElevationPrimerTest.java72 nps.changePose(new Pose(Vector3.ORIGIN, Quaternion.yawPitchRoll(0, rads, 0))); in noElevationTest()
90 nps.changePose(new Pose(Vector3.ORIGIN, Quaternion.yawPitchRoll(0, rads, 0))); in replaceElevationTest()
DBackAzimuthPrimerTest.java97 mNps.changePose(new Pose(Vector3.ORIGIN, Quaternion.yawPitchRoll(poseAngle, 0, 0))); in simulateRotation()
DFoVPrimerTest.java39 Quaternion roll10 = Quaternion.yawPitchRoll(0, 0, (float) toRadians(10)); in conversionTest()
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/correction/
DUwbFilterEngineTest.java107 new Pose(Vector3.ORIGIN, Quaternion.yawPitchRoll(-0.5f, 0, 0)) in poseChanges()
147 new Pose(Vector3.ORIGIN, Quaternion.yawPitchRoll(0, 1, 0)) in primerTest()
/packages/modules/Uwb/service/java/com/android/server/uwb/correction/pose/
DSixDofPoseSource.java54 private final Quaternion mRotator = Quaternion.yawPitchRoll(0, -F_HALF_PI, 0);
DRotationPoseSource.java52 private final Quaternion mRotator = Quaternion.yawPitchRoll(0, -F_HALF_PI, 0);
DGyroPoseSource.java129 Quaternion.yawPitchRoll(mAbsoluteYaw, mAbsolutePitch, mAbsoluteRoll) in onSensorChanged()
DIntegPoseSource.java76 private final Quaternion mRotator = Quaternion.yawPitchRoll(0, -F_HALF_PI, 0);
/packages/modules/Uwb/service/java/com/android/server/uwb/correction/math/
DQuaternion.java111 public static Quaternion yawPitchRoll(float yaw, float pitch, float roll) { in yawPitchRoll() method in Quaternion