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

6013 {
6014  int a = ((LWT_ISO_EDGE *)si1)->edge_id;
6015  int b = ((LWT_ISO_EDGE *)si2)->edge_id;
6016  if ( a < b )
6017  return -1;
6018  else if ( a > b )
6019  return 1;
6020  else
6021  return 0;
6022 }

Referenced by _lwt_getIsoEdgeById(), and lwt_Polygonize().

Here is the caller graph for this function: