X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fgfxtools.c;h=e3ab3e1f883fe6fe502b3ba036bdc0a547186887;hp=e8affe74f26137bb60bf176272dfaa55ba548706;hb=913589b999c8093f636651616995c1f79667e705;hpb=1bb328806bae46eaa54a793370ed3e71910482c6 diff --git a/lib/gfxtools.c b/lib/gfxtools.c index e8affe7..e3ab3e1 100644 --- a/lib/gfxtools.c +++ b/lib/gfxtools.c @@ -346,9 +346,10 @@ void gfxline_optimize(gfxline_t*line) if(l->type == gfx_lineTo && next->type == gfx_lineTo) { double dx = l->x-x; double dy = l->y-y; - double nx = next->x-x; - double ny = next->y-y; + 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) {