PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ _lwt_FetchAllEdges()

static LWT_ISO_EDGE* _lwt_FetchAllEdges ( LWT_TOPOLOGY topo,
int *  numedges 
)
static

Definition at line 6141 of file lwgeom_topo.c.

6142 {
6143  LWT_ISO_EDGE *edge;
6144  int fields = LWT_COL_EDGE_ALL;
6145  int nelems = 1;
6146 
6147  edge = lwt_be_getEdgeWithinBox2D( topo, NULL, &nelems, fields, 0);
6148  *numedges = nelems;
6149  if ( nelems == -1 ) {
6150  lwerror("Backend error: %s", lwt_be_lastErrorMessage(topo->be_iface));
6151  return NULL;
6152  }
6153  return edge;
6154 }
#define LWT_COL_EDGE_ALL
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
const char * lwt_be_lastErrorMessage(const LWT_BE_IFACE *be)
Definition: lwgeom_topo.c:120
static LWT_ISO_EDGE * lwt_be_getEdgeWithinBox2D(const LWT_TOPOLOGY *topo, const GBOX *box, int *numelems, int fields, int limit)
Definition: lwgeom_topo.c:179
const LWT_BE_IFACE * be_iface

References LWT_TOPOLOGY_T::be_iface, lwerror(), lwt_be_getEdgeWithinBox2D(), lwt_be_lastErrorMessage(), and LWT_COL_EDGE_ALL.

Referenced by lwt_Polygonize().

Here is the call graph for this function:
Here is the caller graph for this function: