Changeset 292
- Timestamp:
- 05/07/09 08:32:35 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/mex/ContourToMesh/ContourToMesh.cpp
r1 r292 83 83 84 84 #ifdef _DEBUG_ 85 printf("Contour echo: number of contours %i \n",numcontours); 86 contouri=*(contours+numcontours-1); 87 printf("Number of grids %i\n",contouri->nods); 88 for (i=0;i<contouri->nods;i++){ 89 printf("%lf %lf\n",*(contouri->x+i),*(contouri->y+i)); 85 for(i=0;i<numcontours;i++){ 86 printf("\nContour echo: contour number %i / %i\n",i+1,numcontours); 87 contouri=*(contours+i); 88 printf(" Number of grids %i\n",contouri->nods); 89 for (j=0;j<contouri->nods;j++){ 90 printf(" %lf %lf\n",*(contouri->x+j),*(contouri->y+j)); 90 91 } 92 } 91 93 #endif 92 94
Note:
See TracChangeset
for help on using the changeset viewer.