mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
20 lines
417 B
Python
20 lines
417 B
Python
from os import environ
|
|
from sys import path
|
|
from sys import platform as __platform
|
|
if __platform.startswith('linux'):
|
|
path.append(environ['NETGENDIR']+'/../lib')
|
|
if __platform.startswith('win'):
|
|
path.append(environ['NETGENDIR'])
|
|
if __platform.startswith('darwin'):
|
|
path.append(environ['NETGENDIR'])
|
|
|
|
|
|
# from libngpy import *
|
|
import libngpy
|
|
|
|
from . import csg
|
|
from . import meshing
|
|
|
|
del environ
|
|
del path
|