1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
typedef struct fz_stroke_s fz_stroke;
typedef struct fz_dash_s fz_dash;
typedef union fz_pathel_s fz_pathel;
typedef enum fz_pathkind_e
{
FZ_STROKE,
FZ_FILL,
FZ_EOFILL
} fz_pathkind;
typedef enum fz_pathelkind_e
{
FZ_MOVETO,
FZ_LINETO,
FZ_CURVETO,
FZ_CLOSEPATH
} fz_pathelkind;
struct fz_stroke_s
{
int linecap;
int linejoin;
float linewidth;
float miterlimit;
};
struct fz_dash_s
{
int len;
float phase;
float array[FZ_FLEX];
};
union fz_pathel_s
{
fz_pathelkind k;
float v;
};
struct fz_pathnode_s
{
fz_node super;
fz_pathkind paint;
fz_dash *dash;
int linecap;
int linejoin;
float linewidth;
float miterlimit;
int len, cap;
fz_pathel *els;
};
fz_error *fz_newpathnode(fz_pathnode **pathp);
fz_error *fz_clonepathnode(fz_pathnode **pathp, fz_pathnode *oldpath);
fz_error *fz_moveto(fz_pathnode*, float x, float y);
fz_error *fz_lineto(fz_pathnode*, float x, float y);
fz_error *fz_curveto(fz_pathnode*, float, float, float, float, float, float);
fz_error *fz_curvetov(fz_pathnode*, float, float, float, float);
fz_error *fz_curvetoy(fz_pathnode*, float, float, float, float);
fz_error *fz_closepath(fz_pathnode*);
fz_error *fz_endpath(fz_pathnode*, fz_pathkind paint, fz_stroke *stroke, fz_dash *dash);
fz_rect fz_boundpathnode(fz_pathnode *node, fz_matrix ctm);
void fz_debugpathnode(fz_pathnode *node);
fz_error *fz_newdash(fz_dash **dashp, float phase, int len, float *array);
void fz_dropdash(fz_dash *dash);
|