#include <KML_Polygon.h>
|
| KML_Polygon () |
|
| ~KML_Polygon () |
|
void | Echo () |
|
void | DeepEcho () |
|
void | DeepEcho (const char *indent) |
|
void | Write (FILE *fid, const char *indent) |
|
void | Read (FILE *fid, char *kstr) |
|
void | WriteExp (FILE *fid, const char *nstr, int sgn, double cm, double sp) |
|
int | Id () |
|
int | ObjectEnum () |
|
Object * | copy () |
|
void | Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction) |
|
| KML_Geometry () |
|
| ~KML_Geometry () |
|
| KML_Object () |
|
| ~KML_Object () |
|
virtual void | AddAttrib (const char *name, const char *value) |
|
virtual void | WriteAttrib (FILE *fid, const char *indent) |
|
virtual void | AddCommnt (int ncom, char **pcom) |
|
virtual void | AddCommnt (char *value) |
|
virtual void | WriteCommnt (FILE *fid, const char *indent) |
|
virtual | ~Object () |
|
Definition at line 18 of file KML_Polygon.h.
◆ KML_Polygon()
KML_Polygon::KML_Polygon |
( |
| ) |
|
Definition at line 20 of file KML_Polygon.cpp.
24 memcpy(
altmode,
"clampToGround",(strlen(
"clampToGround")+1)*
sizeof(
char));
◆ ~KML_Polygon()
KML_Polygon::~KML_Polygon |
( |
| ) |
|
◆ Echo()
void KML_Polygon::Echo |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho() [1/2]
void KML_Polygon::DeepEcho |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho() [2/2]
void KML_Polygon::DeepEcho |
( |
const char * |
indent | ) |
|
|
virtual |
Reimplemented from KML_Geometry.
Definition at line 72 of file KML_Polygon.cpp.
78 if(flag)
_printf0_(indent <<
"KML_Polygon:\n");
81 if(flag)
_printf0_(indent <<
" extrude: " << (
extrude ?
"true" :
"false") <<
"\n");
85 memcpy(indent2,indent,(strlen(indent)+1)*
sizeof(
char));
90 if(flag)
_printf0_(indent <<
" outer: -------- begin [" << i <<
"] --------\n");
92 if(flag)
_printf0_(indent <<
" outer: -------- end [" << i <<
"] --------\n");
95 if(flag)
_printf0_(indent <<
" outer: [empty]\n");
99 if(flag)
_printf0_(indent <<
" inner: -------- begin [" << i <<
"] --------\n");
101 if(flag)
_printf0_(indent <<
" inner: -------- end [" << i <<
"] --------\n");
104 if(flag)
_printf0_(indent <<
" inner: [empty]\n");
◆ Write()
void KML_Polygon::Write |
( |
FILE * |
fid, |
|
|
const char * |
indent |
|
) |
| |
|
virtual |
Reimplemented from KML_Geometry.
Definition at line 109 of file KML_Polygon.cpp.
114 fprintf(filout,
"%s<Polygon",indent);
116 fprintf(filout,
">\n");
121 fprintf(filout,
"%s <extrude>%d</extrude>\n",indent,(
extrude ? 1 : 0));
122 fprintf(filout,
"%s <tessellate>%d</tessellate>\n",indent,(
tessellate ? 1 : 0));
123 fprintf(filout,
"%s <altitudeMode>%s</altitudeMode>\n",indent,
altmode);
125 memcpy(indent4,indent,(strlen(indent)+1)*
sizeof(
char));
130 fprintf(filout,
"%s <outerBoundaryIs>\n",indent);
133 fprintf(filout,
"%s </outerBoundaryIs>\n",indent);
138 fprintf(filout,
"%s <innerBoundaryIs>\n",indent);
140 fprintf(filout,
"%s </innerBoundaryIs>\n",indent);
143 fprintf(filout,
"%s</Polygon>\n",indent);
◆ Read()
void KML_Polygon::Read |
( |
FILE * |
fid, |
|
|
char * |
kstr |
|
) |
| |
|
virtual |
Reimplemented from KML_Geometry.
Definition at line 148 of file KML_Polygon.cpp.
165 if (!strncmp(kstri,
"</Polygon", 9)) {
166 xDelete<char>(kstri);
169 else if (!strncmp(kstri,
"</",2))
170 {
_error_(
"KML_Polygon::Read -- Unexpected closing tag " << kstri <<
".\n");}
171 else if (strncmp(kstri,
"<",1))
172 {
_error_(
"KML_Polygon::Read -- Unexpected field \"" << kstri <<
"\".\n");}
174 else if (!strcmp(kstri,
"<extrude>"))
178 else if (!strcmp(kstri,
"<tessellate>"))
182 else if (!strcmp(kstri,
"<altitudeMode>"))
187 else if (!strcmp(kstri,
"<outerBoundaryIs>"))
192 if (!strncmp(kstrj,
"</outerBoundaryIs",17)) {
193 xDelete<char>(kstrj);
196 else if (!strncmp(kstrj,
"</",2))
197 {
_error_(
"KML_Polygon::Read -- Unexpected closing tag " << kstrj <<
".\n");}
198 else if (strncmp(kstrj,
"<",1))
199 {
_error_(
"KML_Polygon::Read -- Unexpected field \"" << kstrj <<
"\".\n");}
201 else if (!strncmp(kstrj,
"<LinearRing",11)) {
203 kobj->
Read(fid,kstrj);
207 else if (!strncmp(kstrj,
"<",1))
210 xDelete<char>(kstrj);
213 else if (!strcmp(kstri,
"<innerBoundaryIs>"))
218 if (!strncmp(kstrj,
"</innerBoundaryIs",17)) {
219 xDelete<char>(kstrj);
222 else if (!strncmp(kstrj,
"</",2))
223 {
_error_(
"KML_Polygon::Read -- Unexpected closing tag " << kstrj <<
".\n");}
224 else if (strncmp(kstrj,
"<",1))
225 {
_error_(
"KML_Polygon::Read -- Unexpected field \"" << kstrj <<
"\".\n");}
227 else if (!strncmp(kstrj,
"<LinearRing",11)) {
229 kobj->
Read(fid,kstrj);
233 else if (!strncmp(kstrj,
"<",1))
236 xDelete<char>(kstrj);
239 else if (!strncmp(kstri,
"<",1))
242 xDelete<char>(kstri);
247 for(ncom=ncom; ncom>0; ncom--)
248 xDelete<char>(pcom[ncom-1]);
249 xDelete<char*>(pcom);
◆ WriteExp()
void KML_Polygon::WriteExp |
( |
FILE * |
fid, |
|
|
const char * |
nstr, |
|
|
int |
sgn, |
|
|
double |
cm, |
|
|
double |
sp |
|
) |
| |
|
virtual |
Reimplemented from KML_Object.
Definition at line 254 of file KML_Polygon.cpp.
263 sprintf(nstr2,
"%s (outer)",nstr);
265 sprintf(nstr2,
"(outer)");
274 sprintf(nstr2,
"%s (inner %d of %d)",nstr,i+1,
inner->
Size());
276 sprintf(nstr2,
"(inner %d of %d)",i+1,
inner->
Size());
◆ Id()
int KML_Polygon::Id |
( |
void |
| ) |
|
|
inlinevirtual |
◆ ObjectEnum()
int KML_Polygon::ObjectEnum |
( |
void |
| ) |
|
|
inlinevirtual |
◆ copy()
Object* KML_Polygon::copy |
( |
void |
| ) |
|
|
inlinevirtual |
◆ Marshall()
void KML_Polygon::Marshall |
( |
char ** |
pmarshalled_data, |
|
|
int * |
pmarshalled_data_size, |
|
|
int |
marshall_direction |
|
) |
| |
|
inlinevirtual |
◆ extrude
bool KML_Polygon::extrude |
◆ tessellate
bool KML_Polygon::tessellate |
◆ altmode
◆ outer
◆ inner
The documentation for this class was generated from the following files: