PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwpoly_contains_point()

int lwpoly_contains_point ( const LWPOLY poly,
const POINT2D pt 
)

Definition at line 622 of file lwpoly.c.

References LW_FALSE, LW_INSIDE, LW_OUTSIDE, LW_TRUE, lwpoly_is_empty(), LWPOLY::nrings, ptarray_contains_point(), and LWPOLY::rings.

623 {
624  int i;
625 
626  if ( lwpoly_is_empty(poly) )
627  return LW_FALSE;
628 
629  if ( ptarray_contains_point(poly->rings[0], pt) == LW_OUTSIDE )
630  return LW_FALSE;
631 
632  for ( i = 1; i < poly->nrings; i++ )
633  {
634  if ( ptarray_contains_point(poly->rings[i], pt) == LW_INSIDE )
635  return LW_FALSE;
636  }
637  return LW_TRUE;
638 }
#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
#define LW_INSIDE
Constants for point-in-polygon return values.
int nrings
Definition: liblwgeom.h:455
int ptarray_contains_point(const POINTARRAY *pa, const POINT2D *pt)
Return 1 if the point is inside the POINTARRAY, -1 if it is outside, and 0 if it is on the boundary...
Definition: ptarray.c:736
#define LW_OUTSIDE
int lwpoly_is_empty(const LWPOLY *poly)
Definition: lwpoly.c:445
Here is the call graph for this function: