blob: f95e33b0bcf64b28074de2b176a069fba24993c0 (
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
|
#ifndef INKSCAPE_LPE_LATTICE_H
#define INKSCAPE_LPE_LATTICE_H
/** \file
* LPE <lattice> implementation, see lpe-lattice.cpp.
*/
/*
* Authors:
* Johan Engelen
* Steren Giannini
* No� Falzon
* Victor Navez
*
* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/parameter/enum.h"
#include "live_effects/effect.h"
#include "live_effects/parameter/point.h"
#include "live_effects/lpegroupbbox.h"
namespace Inkscape {
namespace LivePathEffect {
class LPELattice : public Effect, GroupBBoxEffect {
public:
LPELattice(LivePathEffectObject *lpeobject);
virtual ~LPELattice();
virtual void doBeforeEffect (SPLPEItem *lpeitem);
virtual Geom::Piecewise<Geom::D2<Geom::SBasis> > doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in);
virtual void resetDefaults(SPItem * item);
protected:
//virtual void addHelperPathsImpl(SPLPEItem *lpeitem, SPDesktop *desktop);
private:
PointParam grid_point0;
PointParam grid_point1;
PointParam grid_point2;
PointParam grid_point3;
PointParam grid_point4;
PointParam grid_point5;
PointParam grid_point6;
PointParam grid_point7;
PointParam grid_point8;
PointParam grid_point9;
PointParam grid_point10;
PointParam grid_point11;
PointParam grid_point12;
PointParam grid_point13;
PointParam grid_point14;
PointParam grid_point15;
LPELattice(const LPELattice&);
LPELattice& operator=(const LPELattice&);
};
} //namespace LivePathEffect
} //namespace Inkscape
#endif
|