summaryrefslogtreecommitdiff
path: root/third_party/spiro/ppedit/bezctx_x3.c
blob: 92789109e641824e5e93c620fce2fb323f1ef589 (plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
ppedit - A pattern plate editor for Spiro splines.
Copyright (C) 2007 Raph Levien

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.

*/
#include <x3.h>
#include "zmisc.h"
#include "bezctx.h"
#include "bezctx_x3.h"

typedef struct {
    bezctx base;
    x3dc *dc;
    int is_open;
} bezctx_x3;

static void
bezctx_x3_moveto(bezctx *z, double x, double y, int is_open) {
    bezctx_x3 *bc = (bezctx_x3 *)z;

    if (!bc->is_open) x3closepath(bc->dc);
    x3moveto(bc->dc, x, y);
    bc->is_open = is_open;
}

void
bezctx_x3_lineto(bezctx *z, double x, double y) {
    bezctx_x3 *bc = (bezctx_x3 *)z;

    x3lineto(bc->dc, x, y);
}

void
bezctx_x3_quadto(bezctx *z, double x1, double y1, double x2, double y2)
{
    bezctx_x3 *bc = (bezctx_x3 *)z;
    double x0, y0;

    x3getcurrentpoint(bc->dc, &x0, &y0);
    x3curveto(bc->dc,
		  x1 + (1./3) * (x0 - x1),
		  y1 + (1./3) * (y0 - y1),
		  x1 + (1./3) * (x2 - x1),
		  y1 + (1./3) * (y2 - y1),
		  x2,
		  y2);
}

void
bezctx_x3_curveto(bezctx *z, double x1, double y1, double x2, double y2,
		      double x3, double y3)
{
    bezctx_x3 *bc = (bezctx_x3 *)z;

    x3curveto(bc->dc, x1, y1, x2, y2, x3, y3);
}

void
bezctx_x3_finish(bezctx *z)
{
    bezctx_x3 *bc = (bezctx_x3 *)z;

    if (!bc->is_open)
	x3closepath(bc->dc);

    zfree(bc);
}

bezctx *
new_bezctx_x3(x3dc *dc) {
    bezctx_x3 *result = znew(bezctx_x3, 1);

    result->base.moveto = bezctx_x3_moveto;
    result->base.lineto = bezctx_x3_lineto;
    result->base.quadto = bezctx_x3_quadto;
    result->base.curveto = bezctx_x3_curveto;
    result->base.mark_knot = NULL;
    result->dc = dc;
    result->is_open = 1;
    return &result->base;
}