|
Last change
on this file since 23677 was 23677, checked in by bdef, 7 years ago |
|
CHG: adding missing directories and cleaning code
|
|
File size:
404 bytes
|
| Line | |
|---|
| 1 | from BamgConvertMesh_python import BamgConvertMesh_python
|
|---|
| 2 |
|
|---|
| 3 | def BamgConvertMesh(index,x,y):
|
|---|
| 4 | """
|
|---|
| 5 | BAMGCONVERTMESH - Convert [index, x, y] to a bamg geom and mesh geom
|
|---|
| 6 |
|
|---|
| 7 | Usage:
|
|---|
| 8 | bamggeom, bamgmesh = BamgConvertMesh(index, x, y)
|
|---|
| 9 | index: index of the mesh
|
|---|
| 10 | x,y: coordinates of the nodes
|
|---|
| 11 | """
|
|---|
| 12 |
|
|---|
| 13 | #Call mex module
|
|---|
| 14 | bamggeom, bamgmesh = BamgConvertMesh_python(index,x,y)
|
|---|
| 15 |
|
|---|
| 16 | #return
|
|---|
| 17 | return bamggeom, bamgmesh
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.