netgen/python/meshing.py

8 lines
233 B
Python
Raw Normal View History

2014-10-02 17:10:40 +06:00
from netgen import _platform
if _platform.startswith('linux') or _platform.startswith('darwin'):
# Linux or Mac OS X
2014-10-01 16:31:22 +06:00
from libmesh.meshing import *
2014-10-02 17:10:40 +06:00
if _platform.startswith('win'):
2014-10-01 16:31:22 +06:00
# Windows
from nglib.meshing import *