X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fdrawer.c;h=ccd3fea96c8159bd695f03cfd42be0f72f3f3ad9;hb=864398ba4b887122ae6fa04f8eb2e9d630b990a5;hp=d3716574b70fe90e1361349e4048f31a111950ba;hpb=facdbc2c6d5ac9b5d6551690f646355bf11ae58e;p=swftools.git diff --git a/lib/drawer.c b/lib/drawer.c index d371657..ccd3fea 100644 --- a/lib/drawer.c +++ b/lib/drawer.c @@ -22,6 +22,7 @@ #include #include +#include #include #include #include "drawer.h" @@ -83,6 +84,14 @@ void draw_string(drawer_t*draw, const char*string) to.y = atoi(getToken(&p)); draw->splineTo(draw, &mid, &to); } + else if(!strncmp(token, "conicTo", 5)) { + FPOINT mid,to; + mid.x = atoi(getToken(&p)); + mid.y = atoi(getToken(&p)); + to.x = atoi(getToken(&p)); + to.y = atoi(getToken(&p)); + draw_conicTo(draw, &mid, &to); + } else if(!strncmp(token, "cubicTo", 5)) { FPOINT mid1,mid2,to; mid1.x = atoi(getToken(&p)); @@ -242,6 +251,10 @@ void draw_cubicTo(drawer_t*draw, FPOINT* control1, FPOINT* control2, FPOINT* t { struct qspline q[128]; struct cspline c; + double quality = 80; + double maxerror = (500-(quality*5)>1?500-(quality*5):1)/20.0; + int t,num; + c.start.x = draw->pos.x; c.start.y = draw->pos.y; c.control1.x = control1->x; @@ -250,11 +263,9 @@ void draw_cubicTo(drawer_t*draw, FPOINT* control1, FPOINT* control2, FPOINT* t c.control2.y = control2->y; c.end.x = to->x; c.end.y = to->y; - double quality = 80; - double maxerror = (500-(quality*5)>1?500-(quality*5):1)/20.0; + + num = approximate3(&c, q, 128, maxerror*maxerror); - int num = approximate3(&c, q, 128, maxerror*maxerror); - int t; for(t=0;t