PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ _lwt_EdgeRingIterator_next()

static int _lwt_EdgeRingIterator_next ( LWT_EDGERING_POINT_ITERATOR it,
POINT2D pt 
)
static

Definition at line 6327 of file lwgeom_topo.c.

6328 {
6329  LWT_EDGERING_ELEM *el = it->curelem;
6330  POINTARRAY *pa;
6331 
6332  if ( ! el ) return 0; /* finished */
6333 
6334  pa = el->edge->geom->points;
6335 
6336  int tonext = 0;
6337  LWDEBUGF(3, "iterator fetching idx %d from pa of %d points", it->curidx, pa->npoints);
6338  getPoint2d_p(pa, it->curidx, pt);
6339  if ( el->left ) {
6340  it->curidx++;
6341  if ( it->curidx >= (int) pa->npoints ) tonext = 1;
6342  } else {
6343  it->curidx--;
6344  if ( it->curidx < 0 ) tonext = 1;
6345  }
6346 
6347  if ( tonext )
6348  {
6349  LWDEBUG(3, "iterator moving to next element");
6350  it->curelemidx++;
6351  if ( it->curelemidx < it->ring->size )
6352  {
6353  el = it->curelem = it->ring->elems[it->curelemidx];
6354  it->curidx = el->left ? 0 : el->edge->geom->points->npoints - 1;
6355  }
6356  else
6357  {
6358  it->curelem = NULL;
6359  }
6360  }
6361 
6362  return 1;
6363 }
int getPoint2d_p(const POINTARRAY *pa, uint32_t n, POINT2D *point)
Definition: lwgeom_api.c:343
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
POINTARRAY * points
Definition: liblwgeom.h:497
LWT_ISO_EDGE * edge
Definition: lwgeom_topo.c:6232
LWT_EDGERING_ELEM * curelem
Definition: lwgeom_topo.c:6321
LWT_EDGERING_ELEM ** elems
Definition: lwgeom_topo.c:6242
LWLINE * geom
uint32_t npoints
Definition: liblwgeom.h:441

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: