PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwpoly_is_closed()

int lwpoly_is_closed ( const LWPOLY poly)

Definition at line 506 of file lwpoly.c.

507 {
508  uint32_t i = 0;
509 
510  if ( poly->nrings == 0 )
511  return LW_TRUE;
512 
513  for ( i = 0; i < poly->nrings; i++ )
514  {
515  if (FLAGS_GET_Z(poly->flags))
516  {
517  if ( ! ptarray_is_closed_3d(poly->rings[i]) )
518  return LW_FALSE;
519  }
520  else
521  {
522  if ( ! ptarray_is_closed_2d(poly->rings[i]) )
523  return LW_FALSE;
524  }
525  }
526 
527  return LW_TRUE;
528 }
#define LW_FALSE
Definition: liblwgeom.h:77
int ptarray_is_closed_3d(const POINTARRAY *pa)
Definition: ptarray.c:708
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
int ptarray_is_closed_2d(const POINTARRAY *pa)
Definition: ptarray.c:695
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
POINTARRAY ** rings
Definition: liblwgeom.h:460
uint32_t nrings
Definition: liblwgeom.h:458
uint8_t flags
Definition: liblwgeom.h:455
unsigned int uint32_t
Definition: uthash.h:78

References LWPOLY::flags, FLAGS_GET_Z, LW_FALSE, LW_TRUE, LWPOLY::nrings, ptarray_is_closed_2d(), ptarray_is_closed_3d(), and LWPOLY::rings.

Referenced by lwgeom_is_closed().

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