PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ _lwt_FetchNextUnvisitedEdge()

static int _lwt_FetchNextUnvisitedEdge ( __attribute__((__unused__)) LWT_TOPOLOGY topo,
LWT_ISO_EDGE_TABLE etab,
int  from 
)
static

Definition at line 6310 of file lwgeom_topo.c.

6311 {
6312  while (
6313  from < etab->size &&
6314  etab->edges[from].face_left != -1 &&
6315  etab->edges[from].face_right != -1
6316  ) from++;
6317  return from < etab->size ? from : -1;
6318 }
LWT_ISO_EDGE * edges
Definition: lwgeom_topo.c:6128
LWT_ELEMID face_right
LWT_ELEMID face_left

References LWT_ISO_EDGE_TABLE_T::edges, LWT_ISO_EDGE::face_left, LWT_ISO_EDGE::face_right, and LWT_ISO_EDGE_TABLE_T::size.

Referenced by lwt_Polygonize().

Here is the caller graph for this function: