From 09ec2006be085fce934594ba89f9442af4f8fe11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 10 May 2013 21:13:44 +0200 Subject: [PATCH] Use `\bot` instead of `\perp` in math formulas. `\perp` is for relations, `\bot` is usable as "name". Thanks @JanDupal for hints :-) --- src/Math/Vector2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Math/Vector2.h b/src/Math/Vector2.h index 11a6d4285..655fbd235 100644 --- a/src/Math/Vector2.h +++ b/src/Math/Vector2.h @@ -87,7 +87,7 @@ template class Vector2: public Vector<2, T> { * equivalent to calling Vector3::cross() with Z coordinate set to `0` * and extracting only Z coordinate from the result (X and Y * coordinates are always zero). @f[ - * \boldsymbol a \times \boldsymbol b = \boldsymbol a_\perp \cdot \boldsymbol b = a_xb_y - a_yb_x + * \boldsymbol a \times \boldsymbol b = \boldsymbol a_\bot \cdot \boldsymbol b = a_xb_y - a_yb_x * @f] * @see perpendicular(), dot(const Vector&, const Vector&) */ @@ -128,7 +128,7 @@ template class Vector2: public Vector<2, T> { * @brief Perpendicular vector * * Returns vector rotated 90° counterclockwise. @f[ - * \boldsymbol v_\perp = \begin{pmatrix} -v_y \\ v_x \end{pmatrix} + * \boldsymbol v_\bot = \begin{pmatrix} -v_y \\ v_x \end{pmatrix} * @f] * @see cross(), dot(const Vector&, const Vector&), operator-() const */