#ifdef NG_PYTHON #include <../general/ngpython.hpp> #include using namespace netgen; namespace netgen { extern shared_ptr ng_geometry; } DLL_HEADER void ExportSTL(py::module & m) { py::class_> (m,"STLGeometry") .def(py::init<>()) .def("Load", FunctionPointer([] (shared_ptr self, const string & filename) { ifstream ist(filename); self->Load(ist); })) ; m.def("GenerateMesh", FunctionPointer([] (shared_ptr geo, MeshingParameters ¶m) { auto mesh = make_shared(); SetGlobalMesh(mesh); mesh->SetGeometry(geo); ng_geometry = geo; try { geo->GenerateMesh(mesh,param); } catch (NgException ex) { cout << "Caught NgException: " << ex.What() << endl; } return mesh; })) ; } PYBIND11_PLUGIN(libstl) { py::module m("stl", "pybind stl"); ExportSTL(m); return m.ptr(); } #endif