From: kramm Date: Mon, 10 Dec 2007 23:07:46 +0000 (+0000) Subject: removed debug code X-Git-Tag: buttons-working~455 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=0b58aadc0f2406a13a19649354a1a5ae604ac370 removed debug code --- diff --git a/lib/gfxtools.c b/lib/gfxtools.c index e3ab3e1..cbe0017 100644 --- a/lib/gfxtools.c +++ b/lib/gfxtools.c @@ -349,7 +349,6 @@ void gfxline_optimize(gfxline_t*line) double nx = next->x-l->x; double ny = next->y-l->y; if(fabs(dx*ny - dy*nx) < 0.000001 && (dx*nx + dy*ny) >= 0) { - printf("(%f %f) (%f %f)\n", dx, dy, nx, ny); combine = 1; } } else if(l->type == gfx_splineTo && next->type == gfx_splineTo) {