source: issm/trunk-jpl/src/py3/modules/BamgMesher.py@ 23677

Last change on this file since 23677 was 23677, checked in by bdef, 6 years ago

CHG: adding missing directories and cleaning code

File size: 434 bytes
Line 
1from BamgMesher_python import BamgMesher_python
2
3def BamgMesher(bamgmesh,bamggeom,bamgoptions):
4 """
5 BAMGMESHER
6
7 Usage:
8 bamgmesh,bamggeom = BamgMesher(bamgmesh,bamggeom,bamgoptions);
9
10 bamgmesh: input bamg mesh
11 bamggeom: input bamg geometry for the mesh
12 bamgoptions: options for the bamg mesh
13 """
14
15 #Call mex module
16 bamgmesh, bamggeom = BamgMesher_python(bamgmesh, bamggeom, bamgoptions)
17
18 #return
19 return bamgmesh, bamggeom
Note: See TracBrowser for help on using the repository browser.