Code

Node tool: fix handle retraction with non-cusp nodes
[inkscape.git] / src / live_effects / spiro.h
1 typedef struct {
2     double x;
3     double y;
4     char ty;
5 } spiro_cp;
7 typedef struct spiro_seg_s spiro_seg;
9 spiro_seg *
10 run_spiro(const spiro_cp *src, int n);
12 void
13 free_spiro(spiro_seg *s);
15 void
16 spiro_to_bpath(const spiro_seg *s, int n, bezctx *bc);
18 double get_knot_th(const spiro_seg *s, int i);