From 7bb96f333d276cbccc0e291e8a713a6441dba6d4 Mon Sep 17 00:00:00 2001 From: kramm Date: Wed, 12 Dec 2007 10:00:24 +0000 Subject: [PATCH] header file for artsutils.c --- lib/devices/artsutils.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/devices/artsutils.h diff --git a/lib/devices/artsutils.h b/lib/devices/artsutils.h new file mode 100644 index 0000000..0375b82 --- /dev/null +++ b/lib/devices/artsutils.h @@ -0,0 +1,14 @@ +#ifndef __artsutils_h__ +#define __artsutils_h__ + +#include "../../config.h" +#include "../art/libart.h" + +ArtVpath* gfxline_to_ArtVpath(gfxline_t*line); +ArtSVP* gfxfillToSVP(gfxline_t*line, int perturb); +void show_path(ArtSVP*path); +ArtSVP* boxToSVP(double x1, double y1,double x2, double y2); +ArtSVP* gfxstrokeToSVP(gfxline_t*line, gfxcoord_t width, gfx_capType cap_style, gfx_joinType joint_style, double miterLimit); +gfxline_t* SVPtogfxline(ArtSVP*svp); + +#endif -- 1.7.10.4