aboutsummaryrefslogtreecommitdiff
path: root/apps/mathlib/math/Quaternion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mathlib/math/Quaternion.cpp')
-rw-r--r--apps/mathlib/math/Quaternion.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/mathlib/math/Quaternion.cpp b/apps/mathlib/math/Quaternion.cpp
index 161b9d039..78481b286 100644
--- a/apps/mathlib/math/Quaternion.cpp
+++ b/apps/mathlib/math/Quaternion.cpp
@@ -82,13 +82,13 @@ Quaternion::Quaternion(const Dcm &dcm) :
// avoiding singularities by not using
// division equations
setA(0.5 * sqrt(1.0 +
- double( dcm(0, 0) + dcm(1, 1) + dcm(2, 2))));
+ double(dcm(0, 0) + dcm(1, 1) + dcm(2, 2))));
setB(0.5 * sqrt(1.0 +
- double( dcm(0, 0) - dcm(1, 1) - dcm(2, 2))));
+ double(dcm(0, 0) - dcm(1, 1) - dcm(2, 2))));
setC(0.5 * sqrt(1.0 +
- double(-dcm(0, 0) + dcm(1, 1) - dcm(2, 2))));
+ double(-dcm(0, 0) + dcm(1, 1) - dcm(2, 2))));
setD(0.5 * sqrt(1.0 +
- double(-dcm(0, 0) - dcm(1, 1) + dcm(2, 2))));
+ double(-dcm(0, 0) - dcm(1, 1) + dcm(2, 2))));
}
Quaternion::Quaternion(const EulerAngles &euler) :