PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ _lwt_EdgeRingIsCCW()

static int _lwt_EdgeRingIsCCW ( LWT_EDGERING ring)
static

Definition at line 6399 of file lwgeom_topo.c.

6400 {
6401  double sa;
6402 
6403  LWDEBUGF(2, "_lwt_EdgeRingIsCCW, ring has %d elems", ring->size);
6405  sa = _lwt_EdgeRingSignedArea(it);
6406  LWDEBUGF(2, "_lwt_EdgeRingIsCCW, signed area is %g", sa);
6407  lwfree(it);
6408  if ( sa >= 0 ) return 0;
6409  else return 1;
6410 }
void lwfree(void *mem)
Definition: lwutil.c:242
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
static double _lwt_EdgeRingSignedArea(LWT_EDGERING_POINT_ITERATOR *it)
Definition: lwgeom_topo.c:6367
static LWT_EDGERING_POINT_ITERATOR * _lwt_EdgeRingIterator_begin(LWT_EDGERING *er)
Definition: lwgeom_topo.c:6173

References _lwt_EdgeRingIterator_begin(), _lwt_EdgeRingSignedArea(), LWDEBUGF, lwfree(), and LWT_EDGERING_T::size.

Referenced by _lwt_RegisterFaceOnEdgeSide().

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