PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ ptarray_same()

char ptarray_same ( const POINTARRAY pa1,
const POINTARRAY pa2 
)

Definition at line 476 of file ptarray.c.

477 {
478  uint32_t i;
479  size_t ptsize;
480 
481  if ( FLAGS_GET_ZM(pa1->flags) != FLAGS_GET_ZM(pa2->flags) ) return LW_FALSE;
482  LWDEBUG(5,"dimensions are the same");
483 
484  if ( pa1->npoints != pa2->npoints ) return LW_FALSE;
485  LWDEBUG(5,"npoints are the same");
486 
487  ptsize = ptarray_point_size(pa1);
488  LWDEBUGF(5, "ptsize = %d", ptsize);
489 
490  for (i=0; i<pa1->npoints; i++)
491  {
492  if ( memcmp(getPoint_internal(pa1, i), getPoint_internal(pa2, i), ptsize) )
493  return LW_FALSE;
494  LWDEBUGF(5,"point #%d is the same",i);
495  }
496 
497  return LW_TRUE;
498 }
#define LW_FALSE
Definition: liblwgeom.h:108
#define FLAGS_GET_ZM(flags)
Definition: liblwgeom.h:194
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:107
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
static size_t ptarray_point_size(const POINTARRAY *pa)
Definition: lwinline.h:48
static uint8_t * getPoint_internal(const POINTARRAY *pa, uint32_t n)
Definition: lwinline.h:67
lwflags_t flags
Definition: liblwgeom.h:417
uint32_t npoints
Definition: liblwgeom.h:413

References POINTARRAY::flags, FLAGS_GET_ZM, getPoint_internal(), LW_FALSE, LW_TRUE, LWDEBUG, LWDEBUGF, POINTARRAY::npoints, and ptarray_point_size().

Referenced by lwcircstring_same(), lwline_same(), lwpoint_same(), lwpoly_same(), lwtriangle_is_repeated_points(), and lwtriangle_same().

Here is the call graph for this function:
Here is the caller graph for this function: