Code

Store cached icons to disk between runs, and invalidate/purge as needed.
[inkscape.git] / src / live_effects / lpe-gears.h
1 #ifndef INKSCAPE_LPE_GEARS_H
2 #define INKSCAPE_LPE_GEARS_H
4 /*
5  * Inkscape::LPEGears
6  *
7 * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10 *
11 *
12  */
14 #include "live_effects/effect.h"
15 #include "live_effects/parameter/parameter.h"
17 namespace Inkscape {
18 namespace LivePathEffect {
20 class LPEGears : public Effect {
21 public:
22     LPEGears(LivePathEffectObject *lpeobject);
23     virtual ~LPEGears();
25     virtual std::vector<Geom::Path> doEffect_path (std::vector<Geom::Path> const & path_in);
27 private:
28     ScalarParam teeth;
29     ScalarParam phi;
31     LPEGears(const LPEGears&);
32     LPEGears& operator=(const LPEGears&);
33 };
35 }; //namespace LivePathEffect
36 }; //namespace Inkscape
38 #endif