Added tutorial 707

Former-commit-id: 3a57699280
This commit is contained in:
Sebastian Koch
2016-07-06 22:20:41 +02:00
parent 70f5ed2048
commit aa298105c6
10 changed files with 182 additions and 0 deletions
+10
View File
@@ -34,6 +34,10 @@ extern void python_export_igl_cgal(py::module &);
extern void python_export_igl_png(py::module &);
#endif
#ifdef PY_COPYLEFT
extern void python_export_igl_copyleft(py::module &);
#endif
PYBIND11_PLUGIN(pyigl) {
py::module m("pyigl", R"pyigldoc(
Python wrappers for libigl
@@ -65,6 +69,7 @@ PYBIND11_PLUGIN(pyigl) {
copyleft_comiso_miq
copyleft_comiso_nrosy
copyleft_marching_cubes
copyleft_swept_volume
copyleft_tetgen_tetrahedralize
cotmatrix
covariance_scatter_matrix
@@ -79,6 +84,7 @@ PYBIND11_PLUGIN(pyigl) {
fit_rotations
floor
gaussian_curvature
get_seconds
grad
harmonic
hsv_to_rgb
@@ -160,5 +166,9 @@ PYBIND11_PLUGIN(pyigl) {
python_export_igl_png(m);
#endif
#ifdef PY_COPYLEFT
python_export_igl_copyleft(m);
#endif
return m.ptr();
}