Code

Rename LPE: mirror reflect --> mirror symmetry
[inkscape.git] / src / live_effects / lpe-circle_with_radius.h
1 #ifndef INKSCAPE_LPE_CIRCLE_WITH_RADIUS_H
2 #define INKSCAPE_LPE_CIRCLE_WITH_RADIUS_H
4 /** \file
5  * LPE <circle_with_radius> implementation, see lpe-circle_with_radius.cpp.
6  */
8 /*
9  * Authors:
10  *   Johan Engelen
11 *
12 * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
13  *
14  * Released under GNU GPL, read the file 'COPYING' for more information
15  */
17 #include "live_effects/effect.h"
18 #include "live_effects/parameter/parameter.h"
19 #include "live_effects/parameter/path.h"
20 #include "live_effects/parameter/point.h"
22 namespace Inkscape {
23 namespace LivePathEffect {
25 class LPECircleWithRadius : public Effect {
26 public:
27     LPECircleWithRadius(LivePathEffectObject *lpeobject);
28     virtual ~LPECircleWithRadius();
30 //  Choose to implement one of the doEffect functions. You can delete or comment out the others.
31     virtual std::vector<Geom::Path> doEffect_path (std::vector<Geom::Path> const & path_in);
33 private:
34     // add the parameters for your effect here:
35     //ScalarParam radius;
36     // there are all kinds of parameters. Check the /live_effects/parameter directory which types exist!
38     LPECircleWithRadius(const LPECircleWithRadius&);
39     LPECircleWithRadius& operator=(const LPECircleWithRadius&);
40 };
42 } //namespace LivePathEffect
43 } //namespace Inkscape
45 #endif