Code

Store cached icons to disk between runs, and invalidate/purge as needed.
[inkscape.git] / src / live_effects / lpe-circle_3pts.h
1 #ifndef INKSCAPE_LPE_CIRCLE_3PTS_H
2 #define INKSCAPE_LPE_CIRCLE_3PTS_H
4 /** \file
5  * LPE "Circle through 3 points" implementation
6  */
8 /*
9  * Authors:
10  *   Maximilian Albert
11  *
12  * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
13  * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com>
14  *
15  * Released under GNU GPL, read the file 'COPYING' for more information
16  */
18 #include "live_effects/effect.h"
19 #include "live_effects/parameter/parameter.h"
20 #include "live_effects/parameter/point.h"
22 namespace Inkscape {
23 namespace LivePathEffect {
25 class LPECircle3Pts : public Effect {
26 public:
27     LPECircle3Pts(LivePathEffectObject *lpeobject);
28     virtual ~LPECircle3Pts();
30     virtual std::vector<Geom::Path> doEffect_path (std::vector<Geom::Path> const & path_in);
32 private:
33     LPECircle3Pts(const LPECircle3Pts&);
34     LPECircle3Pts& operator=(const LPECircle3Pts&);
35 };
37 } //namespace LivePathEffect
38 } //namespace Inkscape
40 #endif
42 /*
43   Local Variables:
44   mode:c++
45   c-file-style:"stroustrup"
46   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
47   indent-tabs-mode:nil
48   fill-column:99
49   End:
50 */
51 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :