more horizontal refactoring
[swftools.git] / lib / gfxpoly / stroke.h
1 #ifndef __stroke_h__
2 #define __stroke_h__
3 #include "../gfxdevice.h"
4 #include "poly.h"
5 gfxpoly_t* gfxpoly_from_stroke(gfxline_t*line, gfxcoord_t width, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit, double gridsize);
6 void draw_stroke(gfxline_t*start, gfxdrawer_t*draw, double width, gfx_capType cap, gfx_joinType join, double miterLimit);
7 #endif