PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ printLWCIRCSTRING()

void printLWCIRCSTRING ( LWCIRCSTRING curve)

Definition at line 111 of file lwcircstring.c.

References LWCIRCSTRING::flags, FLAGS_NDIMS, lwnotice(), LWCIRCSTRING::points, printPA(), and LWCIRCSTRING::srid.

112 {
113  lwnotice("LWCIRCSTRING {");
114  lwnotice(" ndims = %i", (int)FLAGS_NDIMS(curve->flags));
115  lwnotice(" srid = %i", (int)curve->srid);
116  printPA(curve->points);
117  lwnotice("}");
118 }
uint8_t flags
Definition: liblwgeom.h:441
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
int32_t srid
Definition: liblwgeom.h:443
void printPA(POINTARRAY *pa)
Definition: lwgeom_api.c:472
POINTARRAY * points
Definition: liblwgeom.h:444
#define FLAGS_NDIMS(flags)
Definition: liblwgeom.h:152
Here is the call graph for this function: