Changeset 982 for trunk/zoo-project/zoo-services
- Timestamp:
- Feb 24, 2021, 6:20:56 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-services/cgal/voronoi.c
r980 r982 46 46 47 47 int Voronoi(maps*& conf,maps*& inputs,maps*& outputs){ 48 //#ifdef DEBUG48 #ifdef DEBUG 49 49 fprintf(stderr,"\nService internal print\nStarting\n"); 50 //#endif50 #endif 51 51 //return SERVICE_FAILED; 52 52 maps* cursor=inputs; … … 56 56 tmpm=getMapFromMaps(inputs,"InputPoints","value"); 57 57 58 #ifdef DEBUG 58 59 fprintf(stderr," **** %s %d\n",__FILE__,__LINE__); 59 60 fflush(stderr); 61 #endif 60 62 61 63 OGRRegisterAll(); … … 67 69 return SERVICE_FAILED; 68 70 } 71 #ifdef DEBUG 69 72 fprintf(stderr," **** %s %d\n",__FILE__,__LINE__); 70 73 fflush(stderr); 74 #endif 71 75 72 76 Triangulation T; … … 204 208 const Pointz p1=tmp->source(); 205 209 const Pointz p2=tmp->target(); 206 fprintf(stderr,"P1 %d %d | P2 %d %d\n",p1.x(),p1.y(),p2.x(),p2.y());207 210 #ifdef DEBUG 208 211 fprintf(stderr,"P1 %d %d | P2 %d %d\n",p1.x(),p1.y(),p2.x(),p2.y());
Note: See TracChangeset
for help on using the changeset viewer.