From 2bf576c2cd04217e7e7d00e2619769dacf4ca665 Mon Sep 17 00:00:00 2001 From: Uwila Date: Fri, 20 Mar 2020 20:58:48 +0100 Subject: [PATCH] Fix documentation mistake for glm_vec3_rotate (#126) In the documentation, for glm_vec3_rotate, correctly labels `angle` as `in` rather than `out`. Co-authored-by: Recep Aslantas --- docs/source/vec3.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/vec3.rst b/docs/source/vec3.rst index 100e849..5407b61 100644 --- a/docs/source/vec3.rst +++ b/docs/source/vec3.rst @@ -392,7 +392,7 @@ Functions documentation Parameters: | *[in, out]* **v** vector | *[in]* **axis** axis vector (will be normalized) - | *[out]* **angle** angle (radians) + | *[in]* **angle** angle (radians) .. c:function:: void glm_vec3_rotate_m4(mat4 m, vec3 v, vec3 dest)