PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ _lwt_EdgeRingIterator_next()

static int _lwt_EdgeRingIterator_next ( LWT_EDGERING_POINT_ITERATOR it,
POINT2D pt 
)
static

Definition at line 6254 of file lwgeom_topo.c.

6255 {
6256  LWT_EDGERING_ELEM *el = it->curelem;
6257  POINTARRAY *pa;
6258 
6259  if ( ! el ) return 0; /* finished */
6260 
6261  pa = el->edge->geom->points;
6262 
6263  int tonext = 0;
6264  LWDEBUGF(3, "iterator fetching idx %d from pa of %d points", it->curidx, pa->npoints);
6265  getPoint2d_p(pa, it->curidx, pt);
6266  if ( el->left ) {
6267  it->curidx++;
6268  if ( it->curidx >= (int) pa->npoints ) tonext = 1;
6269  } else {
6270  it->curidx--;
6271  if ( it->curidx < 0 ) tonext = 1;
6272  }
6273 
6274  if ( tonext )
6275  {
6276  LWDEBUG(3, "iterator moving to next element");
6277  it->curelemidx++;
6278  if ( it->curelemidx < it->ring->size )
6279  {
6280  el = it->curelem = it->ring->elems[it->curelemidx];
6281  it->curidx = el->left ? 0 : el->edge->geom->points->npoints - 1;
6282  }
6283  else
6284  {
6285  it->curelem = NULL;
6286  }
6287  }
6288 
6289  return 1;
6290 }
int getPoint2d_p(const POINTARRAY *pa, uint32_t n, POINT2D *point)
Definition: lwgeom_api.c:342
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
POINTARRAY * points
Definition: liblwgeom.h:483
LWT_ISO_EDGE * edge
Definition: lwgeom_topo.c:6159
LWT_EDGERING_ELEM * curelem
Definition: lwgeom_topo.c:6248
LWT_EDGERING_ELEM ** elems
Definition: lwgeom_topo.c:6169
LWLINE * geom
uint32_t npoints
Definition: liblwgeom.h:427

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: