Code

Filters. Some custom predefined filters fixes and tweaks (Silhouette and Neon Draw).
[inkscape.git] / src / live_effects / lpe-recursiveskeleton.h
1 /** @file
2  * @brief see lpe-recursiveskeleton.cpp.
3  */
4 /* Authors:
5  *   Johan Engelen <j.b.c.engelen@utwente.nl>
6  *
7  * Copyright (C) 2007-2009 Authors
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10  */
12 #ifndef INKSCAPE_LPE_RECURSIVESKELETON_H
13 #define INKSCAPE_LPE_RECURSIVESKELETON_H
15 #include "live_effects/effect.h"
16 #include "live_effects/parameter/parameter.h"
18 namespace Inkscape {
19 namespace LivePathEffect {
22 class LPERecursiveSkeleton : public Effect {
23 public:
24     LPERecursiveSkeleton(LivePathEffectObject *lpeobject);
25     virtual ~LPERecursiveSkeleton();
27     virtual Geom::Piecewise<Geom::D2<Geom::SBasis> > doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in);
29 private:
30     ScalarParam iterations;
32     LPERecursiveSkeleton(const LPERecursiveSkeleton&);
33     LPERecursiveSkeleton& operator=(const LPERecursiveSkeleton&);
34 };
36 } //namespace LivePathEffect
37 } //namespace Inkscape
39 #endif
41 /*
42   Local Variables:
43   mode:c++
44   c-file-style:"stroustrup"
45   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
46   indent-tabs-mode:nil
47   fill-column:99
48   End:
49 */
50 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :