Changeset 15099 for issm/trunk-jpl/src/c/kml/KML_LineString.cpp
- Timestamp:
- 05/24/13 12:38:54 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/kml/KML_LineString.cpp
r15069 r15099 46 46 bool flag=true; 47 47 48 if(flag) _pprint Line_("KML_LineString:");48 if(flag) _pprintString_("KML_LineString:" << "\n"); 49 49 KML_Geometry::Echo(); 50 50 51 if(flag) _pprint Line_(" extrude: " << (extrude ? "true" : "false"));52 if(flag) _pprint Line_(" tessellate: " << (tessellate ? "true" : "false"));53 if(flag) _pprint Line_(" altmode: \"" << altmode << "\"");54 if(flag) _pprint Line_(" coords: (ncoord=" << ncoord << ")");51 if(flag) _pprintString_(" extrude: " << (extrude ? "true" : "false") << "\n"); 52 if(flag) _pprintString_(" tessellate: " << (tessellate ? "true" : "false") << "\n"); 53 if(flag) _pprintString_(" altmode: \"" << altmode << "\"" << "\n"); 54 if(flag) _pprintString_(" coords: (ncoord=" << ncoord << ")" << "\n"); 55 55 56 56 return; … … 73 73 bool flag=true; 74 74 75 if(flag) _pprint Line_(indent << "KML_LineString:");75 if(flag) _pprintString_(indent << "KML_LineString:" << "\n"); 76 76 KML_Geometry::DeepEcho(indent); 77 77 78 if(flag) _pprint Line_(indent << " extrude: " << (extrude ? "true" : "false"));79 if(flag) _pprint Line_(indent << " tessellate: " << (tessellate ? "true" : "false"));80 if(flag) _pprint Line_(indent << " altmode: \"" << altmode << "\"");81 if(flag) _pprint Line_(indent << " coords: (ncoord=" << ncoord << ")");78 if(flag) _pprintString_(indent << " extrude: " << (extrude ? "true" : "false") << "\n"); 79 if(flag) _pprintString_(indent << " tessellate: " << (tessellate ? "true" : "false") << "\n"); 80 if(flag) _pprintString_(indent << " altmode: \"" << altmode << "\"" << "\n"); 81 if(flag) _pprintString_(indent << " coords: (ncoord=" << ncoord << ")" << "\n"); 82 82 for (i=0; i<ncoord; i++) 83 if(flag) _pprint Line_(indent << " (" << coords[3*i+0] << "," << coords[3*i+1] << "," << coords[3*i+2] << ")");83 if(flag) _pprintString_(indent << " (" << coords[3*i+0] << "," << coords[3*i+1] << "," << coords[3*i+2] << ")" << "\n"); 84 84 85 85 return;
Note:
See TracChangeset
for help on using the changeset viewer.