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
677539bb
Commit
677539bb
authored
11 years ago
by
Mark Moll
Browse files
Options
Downloads
Patches
Plain Diff
return shared_pointer to const for const methods
parent
44ea1ea9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/fcl/collision_object.h
+16
-16
16 additions, 16 deletions
include/fcl/collision_object.h
src/broadphase/broadphase_SSaP.cpp
+1
-1
1 addition, 1 deletion
src/broadphase/broadphase_SSaP.cpp
with
17 additions
and
17 deletions
include/fcl/collision_object.h
+
16
−
16
View file @
677539bb
...
...
@@ -69,7 +69,7 @@ public:
/// @brief get the type of the object
virtual
OBJECT_TYPE
getObjectType
()
const
{
return
OT_UNKNOWN
;
}
/// @brief get the node type
/// @brief get the node type
virtual
NODE_TYPE
getNodeType
()
const
{
return
BV_UNKNOWN
;
}
/// @brief compute the AABB for object in local coordinate
...
...
@@ -150,29 +150,27 @@ public:
class
CollisionObject
{
public:
CollisionObject
(
const
boost
::
shared_ptr
<
CollisionGeometry
>
&
cgeom_
)
:
cgeom
(
cgeom_
)
CollisionObject
(
const
boost
::
shared_ptr
<
CollisionGeometry
>
&
cgeom_
)
:
cgeom
(
cgeom_
),
cgeom_const
(
cgeom_
)
{
cgeom
->
computeLocalAABB
();
computeAABB
();
}
CollisionObject
(
const
boost
::
shared_ptr
<
CollisionGeometry
>
&
cgeom_
,
const
Transform3f
&
tf
)
:
cgeom
(
cgeom_
),
t
(
tf
)
CollisionObject
(
const
boost
::
shared_ptr
<
CollisionGeometry
>
&
cgeom_
,
const
Transform3f
&
tf
)
:
cgeom
(
cgeom_
),
cgeom_const
(
cgeom_
),
t
(
tf
)
{
cgeom
->
computeLocalAABB
();
computeAABB
();
}
CollisionObject
(
const
boost
::
shared_ptr
<
CollisionGeometry
>
&
cgeom_
,
const
Matrix3f
&
R
,
const
Vec3f
&
T
)
:
cgeom
(
cgeom_
),
t
(
Transform3f
(
R
,
T
))
cgeom
(
cgeom_
),
cgeom_const
(
cgeom_
),
t
(
Transform3f
(
R
,
T
))
{
cgeom
->
computeLocalAABB
();
computeAABB
();
}
CollisionObject
()
{
}
~
CollisionObject
()
{
}
...
...
@@ -302,9 +300,9 @@ public:
}
/// @brief get geometry from the object instance
boost
::
shared_ptr
<
const
CollisionGeometry
>
collisionGeometry
()
const
const
boost
::
shared_ptr
<
const
CollisionGeometry
>
&
collisionGeometry
()
const
{
return
cgeom
;
return
cgeom
_const
;
}
/// @brief get object's cost density
...
...
@@ -340,6 +338,7 @@ public:
protected
:
boost
::
shared_ptr
<
CollisionGeometry
>
cgeom
;
boost
::
shared_ptr
<
const
CollisionGeometry
>
cgeom_const
;
Transform3f
t
;
...
...
@@ -355,16 +354,16 @@ protected:
class
ContinuousCollisionObject
{
public:
ContinuousCollisionObject
(
const
boost
::
shared_ptr
<
CollisionGeometry
>&
cgeom_
)
:
cgeom
(
cgeom_
)
ContinuousCollisionObject
(
const
boost
::
shared_ptr
<
CollisionGeometry
>&
cgeom_
)
:
cgeom
(
cgeom_
),
cgeom_const
(
cgeom_
)
{
}
ContinuousCollisionObject
(
const
boost
::
shared_ptr
<
CollisionGeometry
>&
cgeom_
,
const
boost
::
shared_ptr
<
MotionBase
>&
motion_
)
:
cgeom
(
cgeom_
),
motion
(
motion_
)
ContinuousCollisionObject
(
const
boost
::
shared_ptr
<
CollisionGeometry
>&
cgeom_
,
const
boost
::
shared_ptr
<
MotionBase
>&
motion_
)
:
cgeom
(
cgeom_
),
cgeom_const
(
cgeom
),
motion
(
motion_
)
{
}
ContinuousCollisionObject
()
{}
~
ContinuousCollisionObject
()
{}
/// @brief get the type of the object
...
...
@@ -450,14 +449,15 @@ public:
}
/// @brief get geometry from the object instance
inline
boost
::
shared_ptr
<
const
CollisionGeometry
>
collisionGeometry
()
const
inline
const
boost
::
shared_ptr
<
const
CollisionGeometry
>
&
collisionGeometry
()
const
{
return
cgeom
;
return
cgeom
_const
;
}
protected
:
boost
::
shared_ptr
<
CollisionGeometry
>
cgeom
;
boost
::
shared_ptr
<
const
CollisionGeometry
>
cgeom_const
;
boost
::
shared_ptr
<
MotionBase
>
motion
;
...
...
This diff is collapsed.
Click to expand it.
src/broadphase/broadphase_SSaP.cpp
+
1
−
1
View file @
677539bb
...
...
@@ -78,7 +78,7 @@ struct SortByZLow
class
DummyCollisionObject
:
public
CollisionObject
{
public:
DummyCollisionObject
(
const
AABB
&
aabb_
)
:
CollisionObject
()
DummyCollisionObject
(
const
AABB
&
aabb_
)
:
CollisionObject
(
boost
::
shared_ptr
<
CollisionGeometry
>
()
)
{
aabb
=
aabb_
;
}
...
...
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