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
e75815d6
Commit
e75815d6
authored
Dec 03, 2020
by
Dennis Gläser
Browse files
[python][getbbox] register overload for points
parent
873d0f39
Changes
1
Hide whitespace changes
Inline
Side-by-side
frackit/python/geometry/getboundingbox.hh
View file @
e75815d6
...
...
@@ -36,6 +36,7 @@
#include
<frackit/geometry/quadrilateral.hh>
#include
<frackit/geometry/segment.hh>
#include
<frackit/geometry/sphere.hh>
#include
<frackit/geometry/point.hh>
#include
<frackit/python/geometry/ctype.hh>
#include
<frackit/python/geometry/brepwrapper.hh>
...
...
@@ -78,6 +79,7 @@ void registerGetBoundingBox(py::module& module)
Detail
::
registerGetBoundingBox
<
Polygon
<
ctype
,
3
>>
(
module
,
"polygon in 3d space."
);
Detail
::
registerGetBoundingBox
<
Quadrilateral
<
ctype
,
3
>>
(
module
,
"quadrilateral in 3d space."
);
Detail
::
registerGetBoundingBox
<
Segment
<
ctype
,
3
>>
(
module
,
"segment in 3d space."
);
Detail
::
registerGetBoundingBox
<
Point
<
ctype
,
3
>>
(
module
,
"point in 3d space."
);
Detail
::
registerGetBoundingBox
<
ShapeWrapper
>
(
module
,
"(wrapped) OpenCascade shape."
);
Detail
::
registerGetBoundingBox
<
VertexWrapper
>
(
module
,
"(wrapped) OpenCascade vertex."
);
...
...
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