From d1103ce86fc56e63fcbbcb00e3c196e3382e5c76 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <github@naumov.de> Date: Sun, 14 Jul 2019 20:16:43 +0200 Subject: [PATCH] [GL] Consistent parameter names. --- GeoLib/AnalyticalGeometry.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GeoLib/AnalyticalGeometry.h b/GeoLib/AnalyticalGeometry.h index 55292cd31b5..c7b03ca7a99 100644 --- a/GeoLib/AnalyticalGeometry.h +++ b/GeoLib/AnalyticalGeometry.h @@ -98,13 +98,13 @@ template <class T_MATRIX> void compute3DRotationMatrixToX(MathLib::Vector3 const& v, T_MATRIX & rot_mat); /** - * Method computes the rotation matrix that rotates the given vector parallel to the \f$z\f$ axis. - * @param plane_normal the (3d) vector that is rotated parallel to the \f$z\f$ axis + * Method computes the rotation matrix that rotates the given vector parallel to + * the \f$z\f$ axis. + * @param n the (3d) vector that is rotated parallel to the \f$z\f$ axis * @param rot_mat 3x3 rotation matrix */ template <class T_MATRIX> -void computeRotationMatrixToXY(MathLib::Vector3 const& plane_normal, - T_MATRIX & rot_mat); +void computeRotationMatrixToXY(MathLib::Vector3 const& n, T_MATRIX& rot_mat); /** * Method computes the rotation matrix that rotates the given vector parallel to the \f$y\f$ axis. -- GitLab