Changeset 14217
- Timestamp:
- 01/09/13 08:36:52 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/wrappers/MeshProfileIntersection/MeshProfileIntersection.cpp
r13864 r14217 45 45 46 46 //contours 47 DataSet *domain= NULL;48 Contour<double> **contours=NULL;49 int numcontours;50 Contour<double> *contouri=NULL;47 DataSet *domain = NULL; 48 Contour<double> **contours=NULL; 49 int numcontours; 50 Contour<double> *contouri=NULL; 51 51 52 52 /* output: */ 53 double* segments=NULL;54 int 53 int* segments=NULL; 54 int numsegs; 55 55 56 56 /*Boot module: */ … … 82 82 *(contours+i)=(Contour<double>*)domain->GetObjectByOffset(i); 83 83 84 /* Debugging of contours :{{{1*/85 /*for(i=0;i<numcontours;i++){86 _printLine_("\nContour echo: contour number " << i+1 << " / " << numcontours);87 contouri=*(contours+i);88 _printLine_(" Number of vertices " << contouri->nods);89 for (j=0;j<contouri->nods;j++){90 _printLine_(" " << *(contouri->x+j) << "f " << *(contouri->y+j) << "f");91 }92 }*/93 /*}}}*/94 95 84 /*Run interpolation routine: */ 96 85 MeshProfileIntersectionx(&segments,&numsegs,index,x,y,nel,nods,contours,numcontours);
Note:
See TracChangeset
for help on using the changeset viewer.