Code

Unit test cleanup.
[inkscape.git] / src / live_effects / lpe-extrude.h
1 /** @file
2  * @brief LPE effect for extruding paths (making them "3D").
3  */
4 /* Authors:
5  *   Johan Engelen <j.b.c.engelen@utwente.nl>
6  *
7  * Copyright (C) 2009 Authors
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10  */
12 #ifndef INKSCAPE_LPE_EXTRUDE_H
13 #define INKSCAPE_LPE_EXTRUDE_H
15 #include "live_effects/effect.h"
16 #include "live_effects/parameter/parameter.h"
17 #include "live_effects/parameter/vector.h"
19 namespace Inkscape {
20 namespace LivePathEffect {
22 class LPEExtrude : public Effect {
23 public:
24     LPEExtrude(LivePathEffectObject *lpeobject);
25     virtual ~LPEExtrude();
27     virtual Geom::Piecewise<Geom::D2<Geom::SBasis> > doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in);
29     virtual void resetDefaults(SPItem * item);
31 private:
32     VectorParam extrude_vector;
34     LPEExtrude(const LPEExtrude&);
35     LPEExtrude& operator=(const LPEExtrude&);
36 };
38 } //namespace LivePathEffect
39 } //namespace Inkscape
41 #endif
43 /*
44   Local Variables:
45   mode:c++
46   c-file-style:"stroustrup"
47   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
48   indent-tabs-mode:nil
49   fill-column:99
50   End:
51 */
52 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :