PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwpoly_is_empty()

int lwpoly_is_empty ( const LWPOLY poly)

Definition at line 445 of file lwpoly.c.

References LW_FALSE, LW_TRUE, POINTARRAY::npoints, LWPOLY::nrings, and LWPOLY::rings.

Referenced by asgml2_poly_buf(), asgml2_poly_size(), asgml3_poly_buf(), lwgeom_is_empty(), lwpoly_contains_point(), lwpoly_force_clockwise(), lwpoly_force_dims(), lwpoly_is_clockwise(), lwpoly_reverse(), lwpoly_set_effective_area(), lwpoly_simplify(), and lwpoly_to_wkt_sb().

446 {
447  if ( (poly->nrings < 1) || (!poly->rings) || (!poly->rings[0]) || (poly->rings[0]->npoints < 1) )
448  return LW_TRUE;
449  return LW_FALSE;
450 }
int npoints
Definition: liblwgeom.h:371
#define LW_FALSE
Definition: liblwgeom.h:77
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
POINTARRAY ** rings
Definition: liblwgeom.h:457
int nrings
Definition: liblwgeom.h:455
Here is the caller graph for this function: