Definition at line 447 of file lwgeom_api.c.
448{
449 uint32_t t;
451 char *mflag;
452
453
455 else mflag = "";
456
461
462 if (!pa)
463 {
464 lwnotice(
" PTARRAY is null pointer!");
465 }
466 else
467 {
468
469 for (t = 0; t < pa->
npoints; t++)
470 {
475 lwnotice(
" %i : %lf,%lf,%lf", t, pt.
x, pt.
y, pt.
z);
477 lwnotice(
" %i : %lf,%lf,%lf,%lf", t, pt.
x, pt.
y, pt.
z, pt.
m);
478 }
479 }
481}
#define FLAGS_NDIMS(flags)
#define FLAGS_GET_M(flags)
int getPoint4d_p(const POINTARRAY *pa, uint32_t n, POINT4D *op)
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
static size_t ptarray_point_size(const POINTARRAY *pa)
References POINTARRAY::flags, FLAGS_GET_M, FLAGS_NDIMS, getPoint4d_p(), lwnotice(), POINT4D::m, POINTARRAY::npoints, ptarray_point_size(), POINT4D::x, POINT4D::y, and POINT4D::z.
Referenced by printLWCIRCSTRING(), printLWLINE(), printLWPOINT(), printLWPOLY(), printLWPSURFACE(), printLWTIN(), and printLWTRIANGLE().