mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
8 lines
237 B
Python
8 lines
237 B
Python
from netgen import __platform
|
|
if __platform.startswith('linux') or __platform.startswith('darwin'):
|
|
# Linux or Mac OS X
|
|
from libmesh.meshing import *
|
|
if __platform.startswith('win'):
|
|
# Windows
|
|
from nglib.meshing import *
|