Code

Filters. Some custom predefined filters fixes and tweaks (Silhouette and Neon Draw).
[inkscape.git] / src / live_effects / bezctx_intf.h
1 typedef struct _bezctx bezctx;
3 bezctx *
4 new_bezctx(void);
6 void
7 bezctx_moveto(bezctx *bc, double x, double y, int is_open);
9 void
10 bezctx_lineto(bezctx *bc, double x, double y);
12 void
13 bezctx_quadto(bezctx *bc, double x1, double y1, double x2, double y2);
15 void
16 bezctx_curveto(bezctx *bc, double x1, double y1, double x2, double y2,
17                double x3, double y3);
19 void
20 bezctx_mark_knot(bezctx *bc, int knot_idx);