PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ _lwt_EdgeRingIterator_next()

static int _lwt_EdgeRingIterator_next ( LWT_EDGERING_POINT_ITERATOR it,
POINT2D pt 
)
static

Definition at line 6148 of file lwgeom_topo.c.

6149{
6150 LWT_EDGERING_ELEM *el = it->curelem;
6151 POINTARRAY *pa;
6152
6153 if ( ! el ) return 0; /* finished */
6154
6155 pa = el->edge->geom->points;
6156
6157 int tonext = 0;
6158 LWDEBUGF(3, "iterator fetching idx %d from pa of %d points", it->curidx, pa->npoints);
6159 getPoint2d_p(pa, it->curidx, pt);
6160 if ( el->left ) {
6161 it->curidx++;
6162 if ( it->curidx >= (int) pa->npoints ) tonext = 1;
6163 } else {
6164 it->curidx--;
6165 if ( it->curidx < 0 ) tonext = 1;
6166 }
6167
6168 if ( tonext )
6169 {
6170 LWDEBUG(3, "iterator moving to next element");
6171 it->curelemidx++;
6172 if ( it->curelemidx < it->ring->size )
6173 {
6174 el = it->curelem = it->ring->elems[it->curelemidx];
6175 it->curidx = el->left ? 0 : el->edge->geom->points->npoints - 1;
6176 }
6177 else
6178 {
6179 it->curelem = NULL;
6180 }
6181 }
6182
6183 return 1;
6184}
int getPoint2d_p(const POINTARRAY *pa, uint32_t n, POINT2D *point)
Definition lwgeom_api.c:349
#define LWDEBUG(level, msg)
Definition lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition lwgeom_log.h:88
POINTARRAY * points
Definition liblwgeom.h:469
LWT_ISO_EDGE * edge
LWT_EDGERING_ELEM * curelem
LWT_EDGERING_ELEM ** elems
uint32_t npoints
Definition liblwgeom.h:413

References LWT_EDGERING_POINT_ITERATOR_T::curelem, LWT_EDGERING_POINT_ITERATOR_T::curelemidx, LWT_EDGERING_POINT_ITERATOR_T::curidx, LWT_EDGERING_ELEM_T::edge, LWT_EDGERING_T::elems, LWT_ISO_EDGE::geom, getPoint2d_p(), LWT_EDGERING_ELEM_T::left, LWDEBUG, LWDEBUGF, POINTARRAY::npoints, LWLINE::points, LWT_EDGERING_POINT_ITERATOR_T::ring, and LWT_EDGERING_T::size.

Referenced by _lwt_EdgeRingCrossingCount(), and _lwt_EdgeRingSignedArea().

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