Changeset 13236 for issm/trunk-jpl/src/modules/BamgConvertMesh
- Timestamp:
- 09/04/12 12:27:17 (13 years ago)
- Location:
- issm/trunk-jpl/src/modules/BamgConvertMesh
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/modules/BamgConvertMesh/BamgConvertMesh.cpp
r13036 r13236 4 4 #include "./BamgConvertMesh.h" 5 5 6 void mexFunction(int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]){ 6 void BamgConvertMeshUsage(void){/*{{{*/ 7 _pprintString_("BAMGCONVERTMESH - convert [x y index] to a bamg geom and mesh geom"); 8 _pprintLine_(""); 9 _pprintLine_(" Usage:"); 10 _pprintLine_(" [bamggeom bamgmesh]=BamgConvertMesh(index,x,y);"); 11 _pprintLine_(" index: index of the mesh"); 12 _pprintLine_(" x,y: coordinates of the nodes"); 13 _pprintLine_(""); 14 }/*}}}*/ 15 WRAPPER(BamgConvertMesh){ 7 16 8 17 /*input: */ … … 53 62 MODULEEND(); 54 63 } 55 56 void BamgConvertMeshUsage(void){57 _pprintString_("BAMGCONVERTMESH - convert [x y index] to a bamg geom and mesh geom");58 _pprintLine_("");59 _pprintLine_(" Usage:");60 _pprintLine_(" [bamggeom bamgmesh]=BamgConvertMesh(index,x,y);");61 _pprintLine_(" index: index of the mesh");62 _pprintLine_(" x,y: coordinates of the nodes");63 _pprintLine_("");64 } -
issm/trunk-jpl/src/modules/BamgConvertMesh/BamgConvertMesh.h
r13235 r13236 16 16 #define PY_ARRAY_UNIQUE_SYMBOL PythonIOSymbol 17 17 #endif 18 19 /* local prototypes: */20 void BamgConvertMeshUsage(void);21 18 22 19 #include "../../c/include/globals.h"
Note:
See TracChangeset
for help on using the changeset viewer.