attempt to convince python to use bbw from main lib

This commit is contained in:
Alec Jacobson
2016-11-28 13:50:37 -05:00
parent dbbc663c9d
commit 5c602c66bd
9 changed files with 40 additions and 72 deletions
+1 -9
View File
@@ -38,10 +38,6 @@ extern void python_export_igl_copyleft(py::module &);
extern void python_export_igl_png(py::module &);
#endif
#ifdef PY_BBW
extern void python_export_igl_bbw(py::module &);
#endif
PYBIND11_PLUGIN(pyigl) {
py::module m("pyigl", R"pyigldoc(
Python wrappers for libigl
@@ -62,7 +58,7 @@ PYBIND11_PLUGIN(pyigl) {
barycenter
barycentric_coordinates
barycentric_to_global
bbw_bbw
bbw
boundary_conditions
boundary_facets
boundary_loop
@@ -193,9 +189,5 @@ PYBIND11_PLUGIN(pyigl) {
python_export_igl_png(m);
#endif
#ifdef PY_BBW
python_export_igl_bbw(m);
#endif
return m.ptr();
}