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
Humanoid Path Planner
hpp-core
Commits
65df5e44
Unverified
Commit
65df5e44
authored
Jan 25, 2021
by
Florent Lamiraux
Committed by
GitHub
Jan 25, 2021
Browse files
Merge pull request #239 from florent-lamiraux/devel
Fix compilation in debug mode.
parents
ae4c84dc
1cb80d01
Pipeline
#12975
failed with stage
in 2 minutes and 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
include/hpp/core/collision-pair.hh
View file @
65df5e44
...
...
@@ -41,10 +41,10 @@ struct CollisionPair {
inline
auto
collide
(
fcl
::
CollisionRequest
&
request
,
fcl
::
CollisionResult
&
result
)
const
//decltype(computeCollision(tf1,tf2,request,result))
{
assert
(
!
first
->
getTransform
(
d
).
translation
().
hasNaN
());
assert
(
!
first
->
getTransform
(
d
).
rotation
().
hasNaN
());
assert
(
!
second
->
getTransform
(
d
).
translation
().
hasNaN
());
assert
(
!
second
->
getTransform
(
d
).
rotation
().
hasNaN
());
assert
(
!
first
->
getTransform
().
translation
().
hasNaN
());
assert
(
!
first
->
getTransform
().
rotation
().
hasNaN
());
assert
(
!
second
->
getTransform
().
translation
().
hasNaN
());
assert
(
!
second
->
getTransform
().
rotation
().
hasNaN
());
return
computeCollision
(
first
->
getFclTransform
(),
second
->
getFclTransform
(),
...
...
Write
Preview
Supports
Markdown
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