PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ _lwt_EdgeRingIsCCW()

static int _lwt_EdgeRingIsCCW ( LWT_EDGERING ring)
static

Definition at line 6520 of file lwgeom_topo.c.

6521 {
6522  double sa;
6523 
6524  LWDEBUGF(2, "_lwt_EdgeRingIsCCW, ring has %d elems", ring->size);
6526  sa = _lwt_EdgeRingSignedArea(it);
6527  LWDEBUGF(2, "_lwt_EdgeRingIsCCW, signed area is %g", sa);
6528  lwfree(it);
6529  if ( sa >= 0 ) return 0;
6530  else return 1;
6531 }
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:6488
static LWT_EDGERING_POINT_ITERATOR * _lwt_EdgeRingIterator_begin(LWT_EDGERING *er)
Definition: lwgeom_topo.c:6294

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: