PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ compare_iso_edges_by_id()

static int compare_iso_edges_by_id ( const void *  si1,
const void *  si2 
)
static

Definition at line 6206 of file lwgeom_topo.c.

6207 {
6208  int a = ((LWT_ISO_EDGE *)si1)->edge_id;
6209  int b = ((LWT_ISO_EDGE *)si2)->edge_id;
6210  if ( a < b )
6211  return -1;
6212  else if ( a > b )
6213  return 1;
6214  else
6215  return 0;
6216 }

Referenced by _lwt_getIsoEdgeById(), and lwt_Polygonize().

Here is the caller graph for this function: