Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
hpp-fcl
Commits
8cb56bd6
Commit
8cb56bd6
authored
Jun 18, 2014
by
Florent Lamiraux
Browse files
Fix computation of closest points in global frame.
parent
519ab5d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/fcl/narrowphase/narrowphase.h
View file @
8cb56bd6
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment