PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ _lwt_EdgeRingIsCCW()

static int _lwt_EdgeRingIsCCW ( LWT_EDGERING ring)
static

Definition at line 6674 of file lwgeom_topo.c.

6675 {
6676  double sa;
6677 
6678  LWDEBUGF(2, "_lwt_EdgeRingIsCCW, ring has %d elems", ring->size);
6680  sa = _lwt_EdgeRingSignedArea(it);
6681  LWDEBUGF(2, "_lwt_EdgeRingIsCCW, signed area is %g", sa);
6682  lwfree(it);
6683  if ( sa >= 0 ) return 0;
6684  else return 1;
6685 }
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:6642
static LWT_EDGERING_POINT_ITERATOR * _lwt_EdgeRingIterator_begin(LWT_EDGERING *er)
Definition: lwgeom_topo.c:6448

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: