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
tools
frackit
Commits
e2c54b9f
Commit
e2c54b9f
authored
Dec 02, 2020
by
Dennis Gläser
Browse files
[python][getbbox] register overload for hollow cylinder
parent
6fa3bb56
Changes
1
Hide whitespace changes
Inline
Side-by-side
frackit/python/geometry/getboundingbox.hh
View file @
e2c54b9f
...
...
@@ -27,6 +27,7 @@
#include
<frackit/geometry/boundingbox.hh>
#include
<frackit/geometry/circle.hh>
#include
<frackit/geometry/cylinder.hh>
#include
<frackit/geometry/hollowcylinder.hh>
#include
<frackit/geometry/cylindersurface.hh>
#include
<frackit/geometry/disk.hh>
#include
<frackit/geometry/ellipse.hh>
...
...
@@ -66,6 +67,7 @@ void registerGetBoundingBox(py::module& module)
{
Detail
::
registerGetBoundingBox
<
Box
<
ctype
>>
(
module
,
"box."
);
Detail
::
registerGetBoundingBox
<
Cylinder
<
ctype
>>
(
module
,
"cylinder."
);
Detail
::
registerGetBoundingBox
<
HollowCylinder
<
ctype
>>
(
module
,
"hollow cylinder."
);
Detail
::
registerGetBoundingBox
<
CylinderSurface
<
ctype
>>
(
module
,
"cylinder surface."
);
Detail
::
registerGetBoundingBox
<
Disk
<
ctype
>>
(
module
,
"disk."
);
Detail
::
registerGetBoundingBox
<
Sphere
<
ctype
>>
(
module
,
"sphere."
);
...
...
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