netgen/python/csg.py
Christoph Wintersteiger f89060e260 windows fixes
2014-10-08 13:37:37 +00:00

13 lines
388 B
Python

from netgen import __platform
if __platform.startswith('linux') or __platform.startswith('darwin'):
# Linux or Mac OS X
from libcsg.csg import *
from libcsgvis.csgvis import *
import libmesh.meshing
# from libmesh.meshing import *
if __platform.startswith('win'):
# Windows
from nglib.csg import *
from nglib.csgvis import *
from nglib.meshing import *