Changeset 13236 for issm/trunk-jpl/src/modules/TriaSearch/TriaSearch.cpp
- Timestamp:
- 09/04/12 12:27:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/modules/TriaSearch/TriaSearch.cpp
r12601 r13236 4 4 #include "./TriaSearch.h" 5 5 6 void mexFunction( int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]){ 6 void TriaSearchUsage(void){/*{{{*/ 7 _pprintLine_("TriaSearch- find triangle holding a point (x0,y0) in a mesh"); 8 _pprintLine_(""); 9 _pprintLine_(" Usage:"); 10 _pprintLine_(" tria=TriaSearch(index,x,y,x0,y0);"); 11 _pprintLine_(" index,x,y: mesh triangulatrion"); 12 _pprintLine_(" x0,y0: coordinates of the point for which we are trying to find a triangle"); 13 _pprintLine_(" x0,y0 can be an array of points"); 14 _pprintLine_(""); 15 }/*}}}*/ 16 WRAPPER(TriaSearch){ 7 17 8 18 int i; … … 49 59 MODULEEND(); 50 60 } 51 52 void TriaSearchUsage(void){53 _pprintLine_("TriaSearch- find triangle holding a point (x0,y0) in a mesh");54 _pprintLine_("");55 _pprintLine_(" Usage:");56 _pprintLine_(" tria=TriaSearch(index,x,y,x0,y0);");57 _pprintLine_(" index,x,y: mesh triangulatrion");58 _pprintLine_(" x0,y0: coordinates of the point for which we are trying to find a triangle");59 _pprintLine_(" x0,y0 can be an array of points");60 _pprintLine_("");61 }
Note:
See TracChangeset
for help on using the changeset viewer.