From f0f8dce55967505aecd68f2f2f59e2ec6e1a759b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 24 Mar 2021 18:07:35 +0100 Subject: [PATCH] Math: link relevant APIs in Quaternion multiply docs. --- src/Magnum/Math/Quaternion.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Magnum/Math/Quaternion.h b/src/Magnum/Math/Quaternion.h index 1dd62bc14..f4b0708ef 100644 --- a/src/Magnum/Math/Quaternion.h +++ b/src/Magnum/Math/Quaternion.h @@ -548,6 +548,9 @@ template class Quaternion { * p q = [p_S \boldsymbol q_V + q_S \boldsymbol p_V + \boldsymbol p_V \times \boldsymbol q_V, * p_S q_S - \boldsymbol p_V \cdot \boldsymbol q_V] * @f] + * + * @see @ref cross(const Vector3&, const Vector3&), + * @ref Vector::dot() const */ Quaternion operator*(const Quaternion& other) const;