Definition at line 805 of file lwgeom_functions_analytic.c.
References determineSide(), FP_CONTAINS_BOTTOM, getPoint2d_cp(), isOnSegment(), POINTARRAY::npoints, POINT2D::x, and POINT2D::y.
Referenced by point_in_multipolygon(), and point_in_polygon().
813 POSTGIS_DEBUG(2,
"point_in_ring called.");
816 for (i=0; i<pts->
npoints-1; i++)
823 POSTGIS_DEBUGF(3,
"segment: (%.8f, %.8f),(%.8f, %.8f)", seg1->
x, seg1->
y, seg2->
x, seg2->
y);
824 POSTGIS_DEBUGF(3,
"side result: %.8f", side);
828 if ((seg2->
x == seg1->
x) && (seg2->
y == seg1->
y))
830 POSTGIS_DEBUG(3,
"segment is zero length... ignoring.");
841 POSTGIS_DEBUGF(3,
"point on ring boundary between points %d, %d", i, i+1);
852 if ((seg1->
y <= point->
y) && (point->
y < seg2->
y) && (side > 0))
854 POSTGIS_DEBUG(3,
"incrementing winding number.");
863 else if ((seg2->
y <= point->
y) && (point->
y < seg1->
y) && (side < 0))
865 POSTGIS_DEBUG(3,
"decrementing winding number.");
871 POSTGIS_DEBUGF(3,
"winding number %d", wn);
const POINT2D * getPoint2d_cp(const POINTARRAY *pa, int n)
Returns a POINT2D pointer into the POINTARRAY serialized_ptlist, suitable for reading from...
static int isOnSegment(const POINT2D *seg1, const POINT2D *seg2, const POINT2D *point)
static double determineSide(const POINT2D *seg1, const POINT2D *seg2, const POINT2D *point)
#define FP_CONTAINS_BOTTOM(A, X, B)