blob: ae1c511b24587efcb4a95286d3416e7cd50022af (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef INKSCAPE_LPE_DYNASTROKE_H
#define INKSCAPE_LPE_DYNASTROKE_H
/** \file
* LPE <dynastroke> implementation, see lpe-dynastroke.cpp.
*/
/*
* Authors:
* JFB, but derived from Johan Engelen!
*
* Copyright (C) JF Barraud 2008 <jf.barraud@gmail.com>
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "live_effects/parameter/enum.h"
#include "live_effects/effect.h"
#include "live_effects/parameter/parameter.h"
#include "live_effects/parameter/path.h"
#include "live_effects/parameter/bool.h"
namespace Inkscape {
namespace LivePathEffect {
enum DynastrokeMethod {
DSM_ELLIPTIC_PEN = 0,
DSM_THICKTHIN_FAST,
DSM_THICKTHIN_SLOW,
DSM_END // This must be last
};
enum DynastrokeCappingType {
DSCT_SHARP = 0,
DSCT_ROUND,
//DSCT_CUSTOM,
DSCT_END // This must be last
};
class LPEDynastroke : public Effect {
public:
LPEDynastroke(LivePathEffectObject *lpeobject);
~LPEDynastroke() override;
Geom::Piecewise<Geom::D2<Geom::SBasis> > doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in) override;
private:
EnumParam<DynastrokeMethod> method;
ScalarParam width;
ScalarParam roundness;
ScalarParam angle;
//BoolParam modulo_pi;
EnumParam<DynastrokeCappingType> start_cap;
EnumParam<DynastrokeCappingType> end_cap;
ScalarParam growfor;
ScalarParam fadefor;
BoolParam round_ends;
PathParam capping;
LPEDynastroke(const LPEDynastroke&) = delete;
LPEDynastroke& operator=(const LPEDynastroke&) = delete;
};
} //namespace LivePathEffect
} //namespace Inkscape
#endif
|