Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-fcl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guilhem Saurel
hpp-fcl
Commits
3462f35b
Commit
3462f35b
authored
5 years ago
by
Joseph Mirabel
Browse files
Options
Downloads
Patches
Plain Diff
Implement GJKSolver_indep::shapeIntersect for sphere - box
parent
3e79757f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/narrowphase/narrowphase.cpp
+61
-53
61 additions, 53 deletions
src/narrowphase/narrowphase.cpp
with
61 additions
and
53 deletions
src/narrowphase/narrowphase.cpp
+
61
−
53
View file @
3462f35b
...
...
@@ -46,70 +46,28 @@ namespace hpp
{
namespace
fcl
{
// Shape intersect algorithms not using libccd
// Shape intersect algorithms based on:
// - built-in function: 0
// - GJK: 1
//
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | | box | sphere | capsule | cone | cylinder | plane | half-space | triangle |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | box |
O
|
|
|
|
|
O
|
O
|
|
// | box |
0
|
0
|
1
|
1
|
1
|
0
|
0
|
1
|
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | sphere |/////|
O
|
O
|
|
|
O
|
O
|
O
|
// | sphere |/////|
0
|
0
|
1
|
1
|
0
|
0
|
0
|
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | capsule |/////|////////|
|
|
|
O
|
O
|
|
// | capsule |/////|////////|
1
|
1
|
1
|
0
|
0
|
1
|
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | cone |/////|////////|/////////|
|
|
O
|
O
|
|
// | cone |/////|////////|/////////|
1
|
1
|
0
|
0
|
1
|
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | cylinder |/////|////////|/////////|//////|
|
O
|
O
|
|
// | cylinder |/////|////////|/////////|//////|
1
|
0
|
0
|
1
|
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | plane |/////|////////|/////////|//////|//////////|
O
|
O
|
O
|
// | plane |/////|////////|/////////|//////|//////////|
0
|
0
|
0
|
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | half-space |/////|////////|/////////|//////|//////////|///////|
O
|
O
|
// | half-space |/////|////////|/////////|//////|//////////|///////|
0
|
0
|
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | triangle |/////|////////|/////////|//////|//////////|///////|////////////| |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// Shape distance algorithms not using libccd
//
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | | box | sphere | capsule | cone | cylinder | plane | half-space | triangle |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | box | | | | | | | | |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | sphere |/////| O | O | | | | | O |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | capsule |/////|////////| O | | | | | |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | cone |/////|////////|/////////| | | | | |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | cylinder |/////|////////|/////////|//////| | | | |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | plane |/////|////////|/////////|//////|//////////| | | |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | half-space |/////|////////|/////////|//////|//////////|///////| | |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | triangle |/////|////////|/////////|//////|//////////|///////|////////////| |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// Shape intersect algorithms not using built-in GJK algorithm
//
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | | box | sphere | capsule | cone | cylinder | plane | half-space | triangle |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | box | O | | | | | O | O | |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | sphere |/////| O | O | | | O | O | O |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | capsule |/////|////////| | | | O | O | |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | cone |/////|////////|/////////| | | O | O | |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | cylinder |/////|////////|/////////|//////| | O | O | |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | plane |/////|////////|/////////|//////|//////////| O | O | O |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | half-space |/////|////////|/////////|//////|//////////|///////| O | O |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
// | triangle |/////|////////|/////////|//////|//////////|///////|////////////| |
// | triangle |/////|////////|/////////|//////|//////////|///////|////////////| 1 |
// +------------+-----+--------+---------+------+----------+-------+------------+----------+
template
<
>
...
...
@@ -138,6 +96,36 @@ bool GJKSolver_indep::shapeIntersect<Sphere, Sphere>(const Sphere& s1, const Tra
return
details
::
sphereSphereIntersect
(
s1
,
tf1
,
s2
,
tf2
,
contact_points
,
penetration_depth
,
normal
);
}
template
<
>
bool
GJKSolver_indep
::
shapeIntersect
<
Box
,
Sphere
>
(
const
Box
&
s1
,
const
Transform3f
&
tf1
,
const
Sphere
&
s2
,
const
Transform3f
&
tf2
,
Vec3f
*
contact_points
,
FCL_REAL
*
penetration_depth
,
Vec3f
*
normal
)
const
{
FCL_REAL
dist
;
Vec3f
ps
,
pb
,
n
;
bool
intersect
=
details
::
boxSphereDistance
(
s1
,
tf1
,
s2
,
tf2
,
dist
,
ps
,
pb
,
n
);
if
(
!
intersect
)
return
false
;
if
(
penetration_depth
)
*
penetration_depth
=
dist
;
if
(
normal
)
*
normal
=
n
;
if
(
contact_points
)
*
contact_points
=
pb
;
return
true
;
}
template
<
>
bool
GJKSolver_indep
::
shapeIntersect
<
Sphere
,
Box
>
(
const
Sphere
&
s1
,
const
Transform3f
&
tf1
,
const
Box
&
s2
,
const
Transform3f
&
tf2
,
Vec3f
*
contact_points
,
FCL_REAL
*
penetration_depth
,
Vec3f
*
normal
)
const
{
FCL_REAL
dist
;
Vec3f
ps
,
pb
,
n
;
bool
intersect
=
details
::
boxSphereDistance
(
s2
,
tf2
,
s1
,
tf1
,
dist
,
ps
,
pb
,
n
);
if
(
!
intersect
)
return
false
;
if
(
penetration_depth
)
*
penetration_depth
=
dist
;
if
(
normal
)
*
normal
=
-
n
;
if
(
contact_points
)
*
contact_points
=
pb
;
return
true
;
}
template
<
>
bool
GJKSolver_indep
::
shapeIntersect
<
Box
,
Box
>
(
const
Box
&
s1
,
const
Transform3f
&
tf1
,
const
Box
&
s2
,
const
Transform3f
&
tf2
,
...
...
@@ -583,6 +571,26 @@ bool GJKSolver_indep::shapeDistance<Sphere, Cylinder>
(
s1
,
tf1
,
s2
,
tf2
,
dist
,
p1
,
p2
,
normal
);
}
template
<
>
bool
GJKSolver_indep
::
shapeDistance
<
Box
,
Sphere
>
(
const
Box
&
s1
,
const
Transform3f
&
tf1
,
const
Sphere
&
s2
,
const
Transform3f
&
tf2
,
FCL_REAL
&
dist
,
Vec3f
&
p1
,
Vec3f
&
p2
,
Vec3f
&
normal
)
const
{
return
!
details
::
boxSphereDistance
(
s1
,
tf1
,
s2
,
tf2
,
dist
,
p1
,
p2
,
normal
);
}
template
<
>
bool
GJKSolver_indep
::
shapeDistance
<
Sphere
,
Box
>
(
const
Sphere
&
s1
,
const
Transform3f
&
tf1
,
const
Box
&
s2
,
const
Transform3f
&
tf2
,
FCL_REAL
&
dist
,
Vec3f
&
p1
,
Vec3f
&
p2
,
Vec3f
&
normal
)
const
{
bool
collide
=
details
::
boxSphereDistance
(
s2
,
tf2
,
s1
,
tf1
,
dist
,
p2
,
p1
,
normal
);
normal
*=
-
1
;
return
!
collide
;
}
template
<
>
bool
GJKSolver_indep
::
shapeDistance
<
Cylinder
,
Sphere
>
(
const
Cylinder
&
s1
,
const
Transform3f
&
tf1
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment