PostGIS  2.5.7dev-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 6130 of file lwgeom_topo.c.

6131 {
6132  while (
6133  from < etab->size &&
6134  etab->edges[from].face_left != -1 &&
6135  etab->edges[from].face_right != -1
6136  ) from++;
6137  return from < etab->size ? from : -1;
6138 }
LWT_ISO_EDGE * edges
Definition: lwgeom_topo.c:5948
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: