mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
28 lines
515 B
C++
28 lines
515 B
C++
// a wrapper to load netgen-dll into python
|
|
|
|
#include <iostream>
|
|
#include <boost/python.hpp>
|
|
|
|
#ifdef WIN32
|
|
#define DLL_HEADER __declspec(dllimport)
|
|
#else
|
|
#define DLL_HEADER
|
|
#endif
|
|
|
|
|
|
void DLL_HEADER ExportNetgenMeshing();
|
|
void DLL_HEADER ExportMeshVis();
|
|
void DLL_HEADER ExportCSG();
|
|
void DLL_HEADER ExportCSGVis();
|
|
void DLL_HEADER ExportGeom2d();
|
|
|
|
BOOST_PYTHON_MODULE(libngpy)
|
|
{
|
|
ExportCSG();
|
|
ExportCSGVis();
|
|
ExportNetgenMeshing();
|
|
ExportMeshVis();
|
|
ExportGeom2d();
|
|
}
|
|
|