From 38b3acce961ffb3d387082c749130fa9c61c240c Mon Sep 17 00:00:00 2001 From: Nicolas MARTIN Date: Thu, 11 Jun 2020 15:04:03 +0200 Subject: [PATCH] fix conjugate_inversed comment --- matrix/Quaternion.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix/Quaternion.hpp b/matrix/Quaternion.hpp index db4eced28f..9acbb4afff 100644 --- a/matrix/Quaternion.hpp +++ b/matrix/Quaternion.hpp @@ -407,7 +407,7 @@ public: * Rotates vector v_2 in frame 2 to vector v_1 in frame 1 * using the rotation quaternion q_21 * describing the rotation from frame 1 to 2 - * v_1 = q_21^-1 * v_1 * q_21 + * v_1 = q_21^-1 * v_2 * q_21 * * @param vec vector to rotate in frame 2 (typically reference frame) * @return rotated vector in frame 1 (typically body frame)