blob: 8b22c64120c0463bcee2eff46d4e960e9db524fd (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef INKSCAPE_LPE_ROUGH_HATCHES_H
#define INKSCAPE_LPE_ROUGH_HATCHES_H
/** \file
* Fills an area with rough hatches.
*/
/*
* Authors:
* JFBarraud
*
* Copyright (C) JF Barraud 2008.
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "live_effects/effect.h"
#include "live_effects/parameter/parameter.h"
#include "live_effects/parameter/bool.h"
#include "live_effects/parameter/random.h"
#include "live_effects/parameter/vector.h"
namespace Inkscape {
namespace LivePathEffect {
class LPERoughHatches : public Effect {
public:
LPERoughHatches(LivePathEffectObject *lpeobject);
~LPERoughHatches() override;
Geom::Piecewise<Geom::D2<Geom::SBasis> >
doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in) override;
void doOnApply(SPLPEItem const *lpeitem) override;
void resetDefaults(SPItem const* item) override;
void doBeforeEffect(SPLPEItem const* item) override;
std::vector<double>
generateLevels(Geom::Interval const &domain, double x_org);
std::vector<std::vector<Geom::Point> >
linearSnake(Geom::Piecewise<Geom::D2<Geom::SBasis> > const &f, Geom::Point const &org);
Geom::Piecewise<Geom::D2<Geom::SBasis> >
smoothSnake(std::vector<std::vector<Geom::Point> > const &linearSnake);
private:
double hatch_dist;
RandomParam dist_rdm;
ScalarParam growth;
//topfront,topback,bottomfront,bottomback handle scales.
ScalarParam scale_tf, scale_tb, scale_bf, scale_bb;
RandomParam top_edge_variation;
RandomParam bot_edge_variation;
RandomParam top_tgt_variation;
RandomParam bot_tgt_variation;
RandomParam top_smth_variation;
RandomParam bot_smth_variation;
BoolParam fat_output, do_bend;
ScalarParam stroke_width_top;
ScalarParam stroke_width_bot;
ScalarParam front_thickness, back_thickness;
VectorParam direction;
VectorParam bender;
LPERoughHatches(const LPERoughHatches&) = delete;
LPERoughHatches& operator=(const LPERoughHatches&) = delete;
};
} //namespace LivePathEffect
} //namespace Inkscape
#endif
|