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