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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* @brief Roughen LPE effect, see lpe-roughen.cpp.
*/
/* Authors:
* Jabier Arraiza Cenoz <jabier.arraiza@marker.es>
*
* Copyright (C) 2014 Authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef INKSCAPE_LPE_ROUGHEN_H
#define INKSCAPE_LPE_ROUGHEN_H
#include "live_effects/effect.h"
#include "live_effects/parameter/enum.h"
#include "live_effects/parameter/parameter.h"
#include "live_effects/parameter/path.h"
#include "live_effects/parameter/bool.h"
#include "live_effects/parameter/random.h"
namespace Inkscape {
namespace LivePathEffect {
enum DivisionMethod {
DM_SEGMENTS,
DM_SIZE,
DM_END
};
enum HandlesMethod {
HM_ALONG_NODES,
HM_RAND,
HM_RETRACT,
HM_SMOOTH,
HM_END
};
class LPERoughen : public Effect {
public:
LPERoughen(LivePathEffectObject *lpeobject);
~LPERoughen() override;
void doOnApply(SPLPEItem const *lpeitem) override;
void doEffect(SPCurve *curve) override;
virtual double sign(double randNumber);
virtual Geom::Point randomize(double max_length, bool is_node = false);
void doBeforeEffect(SPLPEItem const * lpeitem) override;
virtual SPCurve const * addNodesAndJitter(Geom::Curve const * A, Geom::Point &prev, Geom::Point &last_move, double t, bool last);
virtual SPCurve *jitter(Geom::Curve const * A, Geom::Point &prev, Geom::Point &last_move);
virtual Geom::Point tPoint(Geom::Point A, Geom::Point B, double t = 0.5);
Gtk::Widget *newWidget() override;
private:
EnumParam<DivisionMethod> method;
ScalarParam max_segment_size;
ScalarParam segments;
RandomParam displace_x;
RandomParam displace_y;
RandomParam global_randomize;
EnumParam<HandlesMethod> handles;
BoolParam shift_nodes;
BoolParam fixed_displacement;
BoolParam spray_tool_friendly;
long seed;
LPERoughen(const LPERoughen &) = delete;
LPERoughen &operator=(const LPERoughen &) = delete;
};
}; //namespace LivePathEffect
}; //namespace Inkscape
#endif
|