Skip to content
Snippets Groups Projects
Commit cef1f00c authored by jcarpent's avatar jcarpent
Browse files

[C++] Correct naming of input arguments to match the doc

parent e99bd2a1
No related branches found
No related tags found
No related merge requests found
......@@ -321,8 +321,8 @@ namespace se3
*
* @return The corresponding distance
*/
double distance(const Eigen::VectorXd & q1,const Eigen::VectorXd & q2) const
{ return derived().distance_impl(q1, q2); }
double distance(const Eigen::VectorXd & q0,const Eigen::VectorXd & q1) const
{ return derived().distance_impl(q0, q1); }
JointIndex i_id; // ID of the joint in the multibody list.
int i_q; // Index of the joint configuration in the joint configuration vector.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment