Skip to content
GitLab
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
775b3525
Commit
775b3525
authored
Nov 15, 2019
by
Gabriele Buondonno
Browse files
[Sphere] Fix volume computation
parent
7c2cca6d
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/hpp/fcl/shape/geometric_shapes.h
View file @
775b3525
...
...
@@ -143,7 +143,7 @@ public:
FCL_REAL
computeVolume
()
const
{
return
4
*
boost
::
math
::
constants
::
pi
<
FCL_REAL
>
()
*
radius
*
radius
/
3
;
return
4
*
boost
::
math
::
constants
::
pi
<
FCL_REAL
>
()
*
radius
*
radius
*
radius
/
3
;
}
};
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment