PostGIS  3.4.0dev-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 6133 of file lwgeom_topo.c.

6134 {
6135  int a = ((LWT_ISO_EDGE *)si1)->edge_id;
6136  int b = ((LWT_ISO_EDGE *)si2)->edge_id;
6137  if ( a < b )
6138  return -1;
6139  else if ( a > b )
6140  return 1;
6141  else
6142  return 0;
6143 }

Referenced by _lwt_getIsoEdgeById(), and lwt_Polygonize().

Here is the caller graph for this function: