0375b82eac5920c763931088184f1ae3db8c9ad5
[swftools.git] / lib / devices / artsutils.h
1 #ifndef __artsutils_h__
2 #define __artsutils_h__
3
4 #include "../../config.h"
5 #include "../art/libart.h"
6
7 ArtVpath* gfxline_to_ArtVpath(gfxline_t*line);
8 ArtSVP* gfxfillToSVP(gfxline_t*line, int perturb);
9 void show_path(ArtSVP*path);
10 ArtSVP* boxToSVP(double x1, double y1,double x2, double y2);
11 ArtSVP* gfxstrokeToSVP(gfxline_t*line, gfxcoord_t width, gfx_capType cap_style, gfx_joinType joint_style, double miterLimit);
12 gfxline_t* SVPtogfxline(ArtSVP*svp);
13
14 #endif