File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ #include " default_types.h"
2
+ #include < igl/oriented_bounding_box.h>
3
+ #include < nanobind/nanobind.h>
4
+ #include < nanobind/ndarray.h>
5
+ #include < nanobind/eigen/dense.h>
6
+
7
+ namespace nb = nanobind;
8
+ using namespace nb ::literals;
9
+
10
+
11
+ void bind_OrientedBoundingBoxMinimizeType (nb::module_ &m)
12
+ {
13
+ nb::enum_<igl::OrientedBoundingBoxMinimizeType>(m, " OrientedBoundingBoxMinimizeType" )
14
+ .value (" ORIENTED_BOUNDING_BOX_MINIMIZE_VOLUME" , igl::ORIENTED_BOUNDING_BOX_MINIMIZE_VOLUME)
15
+ .value (" ORIENTED_BOUNDING_BOX_MINIMIZE_SURFACE_AREA" , igl::ORIENTED_BOUNDING_BOX_MINIMIZE_SURFACE_AREA)
16
+ .value (" ORIENTED_BOUNDING_BOX_MINIMIZE_DIAGONAL_LENGTH" , igl::ORIENTED_BOUNDING_BOX_MINIMIZE_DIAGONAL_LENGTH)
17
+ .export_values ()
18
+ ;
19
+ }
20
+
You can’t perform that action at this time.
0 commit comments