- Timestamp:
- 04/05/12 14:48:35 (13 years ago)
- Location:
- issm/trunk-jpl/src/mex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/mex
- Property svn:ignore
-
old new 1 __pycache__ 1 2 Makefile 2 3 .ignore.txt
-
- Property svn:ignore
-
issm/trunk-jpl/src/mex/MeshProfileIntersection/MeshProfileIntersection.cpp
r11321 r11933 53 53 /*Fetch inputs: */ 54 54 //index 55 Fetch MatlabData(&double_index,&nel,&dummy,INDEX);55 FetchData(&double_index,&nel,&dummy,INDEX); 56 56 if(dummy!=3 && dummy!=6)_error_(" element triangulation should be of 3 or 6 column width!"); 57 57 index=(int*)xmalloc(nel*3*sizeof(int)); … … 62 62 } 63 63 //x and y 64 Fetch MatlabData(&x,&nods,X);65 Fetch MatlabData(&y,&dummy,Y);64 FetchData(&x,&nods,X); 65 FetchData(&y,&dummy,Y); 66 66 67 67 //contours … … 94 94 95 95 /* output: */ 96 Write MatlabData(SEGMENTS,segments,numsegs,5);96 WriteData(SEGMENTS,segments,numsegs,5); 97 97 98 98 /*end module: */
Note:
See TracChangeset
for help on using the changeset viewer.