mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
b2fea6dec1
- define DLL_HEADER only once in mydefs.hpp - define/use NGLIB_API in nglib.h - use NGCORE_API_EXPORT for explicit export of symbols
57 lines
1.9 KiB
C++
57 lines
1.9 KiB
C++
// a wrapper to load netgen-dll into python
|
|
|
|
#include <iostream>
|
|
#include <../general/ngpython.hpp>
|
|
#include <core/ngcore_api.hpp>
|
|
|
|
void NGCORE_API_IMPORT ExportNetgenMeshing(py::module &m);
|
|
void NGCORE_API_IMPORT ExportMeshVis(py::module &m);
|
|
void NGCORE_API_IMPORT ExportCSG(py::module &m);
|
|
void NGCORE_API_IMPORT ExportCSGVis(py::module &m);
|
|
void NGCORE_API_IMPORT ExportGeom2d(py::module &m);
|
|
void NGCORE_API_IMPORT ExportSTL(py::module &m);
|
|
void NGCORE_API_IMPORT ExportSTLVis(py::module &m);
|
|
#ifdef OCCGEOMETRY
|
|
void NGCORE_API_IMPORT ExportNgOCC(py::module &m);
|
|
#endif // OCCGEOMETRY
|
|
namespace netgen
|
|
{
|
|
std::vector<unsigned char> NGCORE_API_IMPORT Snapshot( int w, int h );
|
|
}
|
|
|
|
PYBIND11_MODULE(libngpy, ngpy)
|
|
{
|
|
py::module::import("pyngcore");
|
|
py::module meshing = ngpy.def_submodule("_meshing", "pybind meshing module");
|
|
ExportNetgenMeshing(meshing);
|
|
py::module csg = ngpy.def_submodule("_csg", "pybind csg module");
|
|
ExportCSG(csg);
|
|
py::module geom2d = ngpy.def_submodule("_geom2d", "pybind geom2d module");
|
|
ExportGeom2d(geom2d);
|
|
py::module stl = ngpy.def_submodule("_stl", "pybind stl module");
|
|
ExportSTL(stl);
|
|
#ifdef OCCGEOMETRY
|
|
py::module NgOCC = ngpy.def_submodule("_NgOCC", "pybind NgOCC module");
|
|
ExportNgOCC(NgOCC);
|
|
#endif // OCCGEOMETRY
|
|
#ifdef OPENGL
|
|
py::module meshvis = ngpy.def_submodule("meshvis", "pybind meshvis module");
|
|
ExportMeshVis(meshvis);
|
|
py::module csgvis = ngpy.def_submodule("csgvis", "pybind csgvis module");
|
|
ExportCSGVis(csgvis);
|
|
py::module stlvis = ngpy.def_submodule("stlvis", "pybind stlvis module");
|
|
ExportSTLVis(stlvis);
|
|
ngpy.def("Snapshot", netgen::Snapshot);
|
|
#endif // OPENGL
|
|
}
|
|
|
|
// Force linking libnglib to libnetgenpy
|
|
namespace netgen
|
|
{
|
|
void MyBeep (int i);
|
|
void MyDummyToForceLinkingNGLib()
|
|
{
|
|
MyBeep(0);
|
|
}
|
|
}
|