PostGIS  3.0.6dev-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 6204 of file lwgeom_topo.c.

6205 {
6206  while (
6207  from < etab->size &&
6208  etab->edges[from].face_left != -1 &&
6209  etab->edges[from].face_right != -1
6210  ) from++;
6211  return from < etab->size ? from : -1;
6212 }
LWT_ISO_EDGE * edges
Definition: lwgeom_topo.c:6022
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: