From 488cb093ce2c333962cd41c381745257aabda4d1 Mon Sep 17 00:00:00 2001
From: kramm <kramm>
Date: Sun, 6 Apr 2008 16:50:31 +0000
Subject: [PATCH] increased number of lines in spline approximation- the
 renderings in the pdf2swf GUI didn't look good enough

---
 lib/devices/render.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/devices/render.c b/lib/devices/render.c
index f8dbbe2..cf6c056 100644
--- a/lib/devices/render.c
+++ b/lib/devices/render.c
@@ -567,7 +567,7 @@ static void draw_line(gfxdevice_t*dev, gfxline_t*line)
             xx=x1;
 	    yy=y1;
 
-            parts = (int)(sqrt(c)/3);
+            parts = (int)(sqrt(c));
             if(!parts) parts = 1;
 
             for(t=1;t<=parts;t++) {
-- 
1.7.10.4