1 #ifndef __artsutils_h__
2 #define __artsutils_h__
4 #include "../../config.h"
5 #include "../art/libart.h"
11 ArtVpath* gfxline_to_ArtVpath(gfxline_t*line);
12 ArtSVP* gfxfillToSVP(gfxline_t*line, int perturb);
13 void show_path(ArtSVP*path);
14 ArtSVP* boxToSVP(double x1, double y1,double x2, double y2);
15 ArtSVP* gfxstrokeToSVP(gfxline_t*line, gfxcoord_t width, gfx_capType cap_style, gfx_joinType joint_style, double miterLimit);
16 gfxline_t* SVPtogfxline(ArtSVP*svp);