Definition at line 40 of file lwt_edgeend.c.
41{
42 int i, toofar, inc;
43
44 if ( dir > 0 ) {
46 inc = 1;
47 } else {
48 toofar = -1;
49 inc = -1;
50 }
51
52 LWDEBUGF(1,
"first point is index %d", from);
54 for ( i = from+inc; i != toofar; i += inc )
55 {
59
60 return 1;
61 }
62
63
64 return 0;
65}
int getPoint2d_p(const POINTARRAY *pa, uint32_t n, POINT2D *point)
#define P2D_SAME_STRICT(a, b)
#define LWDEBUGF(level, msg,...)
References getPoint2d_p(), LWDEBUGF, POINTARRAY::npoints, and P2D_SAME_STRICT.
Referenced by lwt_edgeEnd_fromEdge().