PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ getPoint4d_cp()

const POINT4D* getPoint4d_cp ( const POINTARRAY pa,
int  n 
)

Returns a POINT4D pointer into the POINTARRAY serialized_ptlist, suitable for reading from.

This is very high performance and declared const because you aren't allowed to muck with the values, only read them.

Definition at line 408 of file lwgeom_api.c.

References POINTARRAY::flags, FLAGS_GET_Z, getPoint_internal(), lwerror(), and POINTARRAY::npoints.

409 {
410  if ( ! pa ) return 0;
411 
412  if ( ! (FLAGS_GET_Z(pa->flags) && FLAGS_GET_Z(pa->flags)) )
413  {
414  lwerror("getPoint3dz_cp: no Z and M coordinates in point array");
415  return 0; /*error */
416  }
417 
418  if ( (n<0) || (n>=pa->npoints))
419  {
420  lwerror("getPoint3dz_cp: point offset out of range");
421  return 0; /*error */
422  }
423 
424  return (const POINT4D*)getPoint_internal(pa, n);
425 }
int npoints
Definition: liblwgeom.h:371
uint8_t flags
Definition: liblwgeom.h:369
uint8_t * getPoint_internal(const POINTARRAY *pa, int n)
Definition: ptarray.c:1753
#define FLAGS_GET_Z(flags)
Macros for manipulating the &#39;flags&#39; byte.
Definition: liblwgeom.h:140
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
Here is the call graph for this function: