PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ _lwt_FetchNextUnvisitedEdge()

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

Definition at line 223 of file lwgeom_topo_polygonizer.c.

224{
225 while (
226 from < etab->size &&
227 etab->edges[from].face_left != -1 &&
228 etab->edges[from].face_right != -1
229 ) from++;
230 return from < etab->size ? from : -1;
231}
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: