Definition at line 440 of file lwgeom_api.c.
441{
442 uint32_t t;
444 char *mflag;
445
446 if (!pa)
447 {
448 lwnotice(
" PTARRAY is null pointer!");
449 return;
450 }
452 else mflag = "";
453
458
459 for (t = 0; t < pa->
npoints; t++)
460 {
465 lwnotice(
" %i : %lf,%lf,%lf", t, pt.
x, pt.
y, pt.
z);
467 lwnotice(
" %i : %lf,%lf,%lf,%lf", t, pt.
x, pt.
y, pt.
z, pt.
m);
468 }
469
471}
#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,...) __attribute__((format(printf
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().