From 60e4cd5c2a14f219a65bb86a680b8893cc625a1c Mon Sep 17 00:00:00 2001 From: Thompson Lee Date: Thu, 4 Aug 2016 07:05:25 -0400 Subject: [PATCH] Minor Fixes series: Adding a missing @param[in]. --- include/c3d/maths.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/c3d/maths.h b/include/c3d/maths.h index 21050fc..e0270ae 100644 --- a/include/c3d/maths.h +++ b/include/c3d/maths.h @@ -328,9 +328,10 @@ static inline C3D_FVec Mtx_MultiplyFVecH(const C3D_Mtx* mtx, C3D_FVec v) /** * @brief 3D translation * @param[in,out] mtx Matrix to translate - * @param[in] x X component to translate - * @param[in] y Y component to translate - * @param[in] z Z component to translate + * @param[in] x X component to translate + * @param[in] y Y component to translate + * @param[in] z Z component to translate + * @param[in] bRightSide Whether to transform from the right side */ void Mtx_Translate(C3D_Mtx* mtx, float x, float y, float z, bool bRightSide);