Skip to content
Snippets Groups Projects
Commit 8cb56bd6 authored by Florent Lamiraux's avatar Florent Lamiraux
Browse files

Fix computation of closest points in global frame.

parent 519ab5d5
No related branches found
No related tags found
No related merge requests found
......@@ -617,8 +617,8 @@ struct GJKSolver_indep
if(distance) *distance = (w0 - w1).length();
if(p1) *p1 = w0;
if(p2) *p2 = w1;
if(p1) *p1 = tf1.transform (w0);
if(p2) *p2 = tf1.transform (w1);
return true;
}
......
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