From 350fb3a64cd8349bc0811d73fbd6b52f668af5dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 8 Nov 2012 18:15:40 +0100 Subject: [PATCH] Fixed documentation of Vector::angle(). --- src/Math/Vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Math/Vector.h b/src/Math/Vector.h index b698f88df..5beb7e22c 100644 --- a/src/Math/Vector.h +++ b/src/Math/Vector.h @@ -56,7 +56,7 @@ template class Vector: public RectangularMatrix<1, si * @brief Angle between normalized vectors * * @f[ - * \phi = \frac{a \cdot b}{|a| \cdot |b|} + * \phi = acos \left(\frac{a \cdot b}{|a| \cdot |b|} \right) * @f] * @attention Assertion fails on non-normalized vectors and NaN is * returned.