PostGIS  3.3.9dev-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 6287 of file lwgeom_topo.c.

6288 {
6289  int a = ((LWT_ISO_EDGE *)si1)->edge_id;
6290  int b = ((LWT_ISO_EDGE *)si2)->edge_id;
6291  if ( a < b )
6292  return -1;
6293  else if ( a > b )
6294  return 1;
6295  else
6296  return 0;
6297 }

Referenced by _lwt_getIsoEdgeById(), and lwt_Polygonize().

Here is the caller graph for this function: