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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
|
#define INKSCAPE_LPE_TANGENT_TO_CURVE_CPP
/** \file
* Implementation of tangent-to-curve LPE.
*/
/*
* Authors:
* Johan Engelen
* Maximilian Albert
*
* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
* Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/lpe-tangent_to_curve.h"
// FIXME: The following are only needed to convert the path's SPCurve* to pwd2.
// There must be a more convenient way to achieve this.
#include "sp-path.h"
#include "display/curve.h"
#include "libnr/n-art-bpath-2geom.h"
#include <2geom/path.h>
#include <2geom/transforms.h>
namespace Inkscape {
namespace LivePathEffect {
LPETangentToCurve::LPETangentToCurve(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
angle(_("Angle"), _("Additional angle between tangent and curve"), "angle", &wr, this, 0.0),
t_attach(_("Location along curve"), _("Location of the point of attachment along the curve (between 0.0 and number-of-segments)"), "t_attach", &wr, this, 0.5),
length_left(_("Length left"), _("Specifies the left end of the tangent"), "length-left", &wr, this, 150),
length_right(_("Length right"), _("Specifies the right end of the tangent"), "length-right", &wr, this, 150)
{
registerParameter( dynamic_cast<Parameter *>(&angle) );
registerParameter( dynamic_cast<Parameter *>(&t_attach) );
registerParameter( dynamic_cast<Parameter *>(&length_left) );
registerParameter( dynamic_cast<Parameter *>(&length_right) );
}
LPETangentToCurve::~LPETangentToCurve()
{
}
Geom::Piecewise<Geom::D2<Geom::SBasis> >
LPETangentToCurve::doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in)
{
using namespace Geom;
Piecewise<D2<SBasis> > output;
ptA = pwd2_in.valueAt(t_attach);
derivA = unit_vector(derivative(pwd2_in).valueAt(t_attach));
// TODO: Why are positive angles measured clockwise, not counterclockwise?
Geom::Rotate rot(Geom::Rotate::from_degrees(-angle));
derivA = derivA * rot;
C = ptA - derivA * length_left;
D = ptA + derivA * length_right;
output = Piecewise<D2<SBasis> >(D2<SBasis>(Linear(C[X], D[X]), Linear(C[Y], D[Y])));
return output;
}
class KnotHolderEntityAttachPt : public KnotHolderEntity
{
public:
virtual bool isLPEParam() { return true; }
virtual void knot_set(NR::Point const &p, NR::Point const &origin, guint state);
virtual NR::Point knot_get();
virtual void onKnotUngrabbed();
};
class KnotHolderEntityLeftEnd : public KnotHolderEntity
{
public:
virtual bool isLPEParam() { return true; }
virtual void knot_set(NR::Point const &p, NR::Point const &origin, guint state);
virtual NR::Point knot_get();
virtual void onKnotUngrabbed();
};
class KnotHolderEntityRightEnd : public KnotHolderEntity
{
public:
virtual bool isLPEParam() { return true; }
virtual void knot_set(NR::Point const &p, NR::Point const &origin, guint state);
virtual NR::Point knot_get();
virtual void onKnotUngrabbed();
};
void
LPETangentToCurve::addKnotHolderHandles(KnotHolder *knotholder, SPDesktop *desktop, SPItem *item)
{
KnotHolderEntityLeftEnd *entity_left_end = new KnotHolderEntityLeftEnd();
KnotHolderEntityRightEnd *entity_right_end = new KnotHolderEntityRightEnd();
KnotHolderEntityAttachPt *entity_attach_pt = new KnotHolderEntityAttachPt();
entity_left_end->create(desktop, item, knotholder,
_("Adjust the \"left\" end of the tangent"));
entity_right_end->create(desktop, item, knotholder,
_("Adjust the \"right\" end of the tangent"));
entity_attach_pt->create(desktop, item, knotholder,
_("Adjust the point of attachment of the tangent"));
knotholder->add(entity_left_end);
knotholder->add(entity_right_end);
knotholder->add(entity_attach_pt);
}
static LPETangentToCurve *
get_effect(SPItem *item)
{
Effect *effect = sp_lpe_item_get_current_lpe(SP_LPE_ITEM(item));
if (effect->effectType() != TANGENT_TO_CURVE) {
g_print ("Warning: Effect is not of type LPETangentToCurve!\n");
return NULL;
}
return static_cast<LPETangentToCurve *>(effect);
}
void
KnotHolderEntityAttachPt::knot_set(NR::Point const &p, NR::Point const &origin, guint state)
{
using namespace Geom;
LPETangentToCurve* lpe = get_effect(item);
// FIXME: There must be a better way of converting the path's SPCurve* to pwd2.
SPCurve *curve = sp_path_get_curve_for_edit (SP_PATH(item));
const NArtBpath *bpath = curve->get_bpath();
Piecewise<D2<SBasis> > pwd2;
std::vector<Geom::Path> pathv = BPath_to_2GeomPath(bpath);
for (unsigned int i=0; i < pathv.size(); i++) {
pwd2.concat(pathv[i].toPwSb());
}
double t0 = nearest_point(p.to_2geom(), pwd2);
lpe->t_attach.param_set_value(t0);
// FIXME: this should not directly ask for updating the item. It should write to SVG, which triggers updating.
sp_lpe_item_update_patheffect (SP_LPE_ITEM(item), true, true);
}
void
KnotHolderEntityLeftEnd::knot_set(NR::Point const &p, NR::Point const &origin, guint state)
{
LPETangentToCurve *lpe = get_effect(item);
double lambda = Geom::nearest_point(p.to_2geom(), lpe->ptA, lpe->derivA);
lpe->length_left.param_set_value(-lambda);
sp_lpe_item_update_patheffect (SP_LPE_ITEM(item), false, true);
}
void
KnotHolderEntityRightEnd::knot_set(NR::Point const &p, NR::Point const &origin, guint state)
{
LPETangentToCurve *lpe = get_effect(item);
double lambda = Geom::nearest_point(p.to_2geom(), lpe->ptA, lpe->derivA);
lpe->length_right.param_set_value(lambda);
sp_lpe_item_update_patheffect (SP_LPE_ITEM(item), false, true);
}
NR::Point
KnotHolderEntityAttachPt::knot_get()
{
LPETangentToCurve* lpe = get_effect(item);
return lpe->ptA;
}
NR::Point
KnotHolderEntityLeftEnd::knot_get()
{
LPETangentToCurve *lpe = get_effect(item);
return lpe->C;
}
NR::Point
KnotHolderEntityRightEnd::knot_get()
{
LPETangentToCurve *lpe = get_effect(item);
return lpe->D;
}
void
KnotHolderEntityAttachPt::onKnotUngrabbed()
{
LPETangentToCurve *lpe = get_effect(item);
lpe->t_attach.write_to_SVG();
}
void
KnotHolderEntityLeftEnd::onKnotUngrabbed()
{
LPETangentToCurve *lpe = get_effect(item);
lpe->length_left.write_to_SVG();
}
void
KnotHolderEntityRightEnd::onKnotUngrabbed()
{
LPETangentToCurve *lpe = get_effect(item);
lpe->length_right.write_to_SVG();
}
} //namespace LivePathEffect
} /* namespace Inkscape */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
|