X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fgfxpoly%2Factive.c;h=ae570fd7db6cb0c464489dd601a9ce31a9163865;hb=f9777d63606840b68fc86df0a96ee1a79ab04e69;hp=2904e08018932ce7ddcde140d89fcc4ed4315c7e;hpb=580c48fef10df9184cf2728338e89f7db0fef2f5;p=swftools.git diff --git a/lib/gfxpoly/active.c b/lib/gfxpoly/active.c index 2904e08..ae570fd 100644 --- a/lib/gfxpoly/active.c +++ b/lib/gfxpoly/active.c @@ -1,7 +1,9 @@ #include #include #include +#include "../../config.h" #include "../q.h" +#include "../types.h" #include "active.h" actlist_t* actlist_new() @@ -29,7 +31,7 @@ void actlist_dump(actlist_t*a, int32_t y) } lastx = x; } - fprintf(stderr, "[%d]", s->nr); + fprintf(stderr, "[%d]", (int)s->nr); s = s->right; if(s) fprintf(stderr, " "); else fprintf(stderr, " y=%d\n", y); @@ -98,7 +100,7 @@ segment_t* actlist_find(actlist_t*a, point_t p1, point_t p2) actlist_dump(a, p1.y); segment_t*s = a->list; while(s) { - fprintf(stderr, "[%d] %f/%f (%d,%d) -> (%d,%d)\n", s->nr, + fprintf(stderr, "[%d] %f/%f (%d,%d) -> (%d,%d)\n", SEGNR(s), single_cmp(s,p1), cmp(s,p1,p2), s->a.x, s->a.y, s->b.x, s->b.y); s = s->right; @@ -503,7 +505,11 @@ void actlist_delete(actlist_t*a, segment_t*s) } else if(!a->root->rightchild) { a->root = a->root->leftchild; } else { +#ifdef HAVE_LRAND48 if(lrand48()&1) { +#else + if(((ptroff_t)s)&16) { +#endif // free up root->left->right segment_t*t = a->root->leftchild; while(t->rightchild) {