PostGIS  2.5.7dev-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 5953 of file lwgeom_topo.c.

5954 {
5955  int a = ((LWT_ISO_EDGE *)si1)->edge_id;
5956  int b = ((LWT_ISO_EDGE *)si2)->edge_id;
5957  if ( a < b )
5958  return -1;
5959  else if ( a > b )
5960  return 1;
5961  else
5962  return 0;
5963 }

Referenced by _lwt_getIsoEdgeById(), and lwt_Polygonize().

Here is the caller graph for this function: