PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ _lwt_EdgeRingIsCCW()

static int _lwt_EdgeRingIsCCW ( LWT_EDGERING ring)
static

Definition at line 6414 of file lwgeom_topo.c.

6415{
6416 double sa;
6417
6418 LWDEBUGF(2, "_lwt_EdgeRingIsCCW, ring has %d elems", ring->size);
6420 sa = _lwt_EdgeRingSignedArea(it);
6421 LWDEBUGF(2, "_lwt_EdgeRingIsCCW, signed area is %g", sa);
6422 lwfree(it);
6423 if ( sa >= 0 ) return 0;
6424 else return 1;
6425}
void lwfree(void *mem)
Definition lwutil.c:242
#define LWDEBUGF(level, msg,...)
Definition lwgeom_log.h:88
static LWT_EDGERING_POINT_ITERATOR * _lwt_EdgeRingIterator_begin(LWT_EDGERING *er)
static double _lwt_EdgeRingSignedArea(LWT_EDGERING_POINT_ITERATOR *it)

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: