mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
25 lines
468 B
Python
25 lines
468 B
Python
from libngpy.csg import *
|
|
import libngpy.csgvis as csgvis
|
|
from libngpy.csgvis import MouseMove
|
|
from libngpy.meshing import *
|
|
|
|
|
|
CSGeometry.VS = csgvis.VS
|
|
SetBackGroundColor = csgvis.SetBackGroundColor
|
|
del csgvis
|
|
|
|
def VS (obj):
|
|
return obj.VS()
|
|
|
|
|
|
|
|
def csg_meshing_func (geom, **args):
|
|
return GenerateMesh (geom, MeshingParameters (**args))
|
|
|
|
CSGeometry.GenerateMesh = csg_meshing_func
|
|
|
|
|
|
unit_cube = CSGeometry()
|
|
unit_cube.Add (OrthoBrick(Pnt(0,0,0), Pnt(1,1,1)))
|
|
|