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 6189 of file lwgeom_topo.c.

6190 {
6191  while (
6192  from < etab->size &&
6193  etab->edges[from].face_left != -1 &&
6194  etab->edges[from].face_right != -1
6195  ) from++;
6196  return from < etab->size ? from : -1;
6197 }
LWT_ISO_EDGE * edges
Definition: lwgeom_topo.c:6007
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: