From 5bbbb460d345ef04ebf3a064c40a584cec441ef2 Mon Sep 17 00:00:00 2001 From: Pierre Moreau Date: Thu, 8 Aug 2019 12:20:23 +0200 Subject: [PATCH] Add missing '@' in the documentation "param" was not being recognised as a keyword, messing up the layout of `glm::rotation()`'s parameter description. --- doc/api/a00769.html | 8 +++++++- glm/gtx/quaternion.hpp | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/doc/api/a00769.html b/doc/api/a00769.html index 27ad9165..e2181f38 100644 --- a/doc/api/a00769.html +++ b/doc/api/a00769.html @@ -413,7 +413,13 @@ Functions

Compute the rotation between two vectors.

-

param orig vector, needs to be normalized param dest vector, needs to be normalized

+
Parameters
+ + + +
origvector, needs to be normalized
destvector, needs to be normalized
+
+
See also
GLM_GTX_quaternion
diff --git a/glm/gtx/quaternion.hpp b/glm/gtx/quaternion.hpp index 05a71dfa..3ce0b886 100644 --- a/glm/gtx/quaternion.hpp +++ b/glm/gtx/quaternion.hpp @@ -153,8 +153,8 @@ namespace glm T const& a); /// Compute the rotation between two vectors. - /// param orig vector, needs to be normalized - /// param dest vector, needs to be normalized + /// @param orig vector, needs to be normalized + /// @param dest vector, needs to be normalized /// /// @see gtx_quaternion template