Changeset 10274 for issm/trunk/src/c/objects/KML/KML_Point.cpp
- Timestamp:
- 10/24/11 14:42:27 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/KML/KML_Point.cpp
r10256 r10274 80 80 _printf_(flag,"%s extrude: %s\n" ,indent,(extrude ? "true" : "false")); 81 81 _printf_(flag,"%s altmode: \"%s\"\n" ,indent,altmode); 82 _printf_(flag,"%s coords: (%g,%g,%g)\n" , coords[0],coords[1],coords[2]);82 _printf_(flag,"%s coords: (%g,%g,%g)\n" ,indent,coords[0],coords[1],coords[2]); 83 83 84 84 return; … … 109 109 void KML_Point::Read(FILE* fid,char* kstr){ 110 110 111 double* pcoords=&coords[0]; 111 112 char* kstri; 112 113 … … 137 138 fid); 138 139 else if (!strcmp(kstri,"<coordinates>")) 139 KMLFileTokenParse( (double **)&coords ,NULL,3,140 KMLFileTokenParse(&pcoords ,NULL,3, 140 141 kstri, 141 142 fid);
Note:
See TracChangeset
for help on using the changeset viewer.