blob: 31a35720dd6198ac9060c9dbac9abe2d41c6d8ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef INKSCAPE_LPE_SPIRO_H
#define INKSCAPE_LPE_SPIRO_H
/*
* Inkscape::LPESpiro
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/effect.h"
namespace Inkscape {
namespace LivePathEffect {
class LPESpiro : public Effect {
public:
LPESpiro(LivePathEffectObject *lpeobject);
~LPESpiro() override;
LPEPathFlashType pathFlashType() const override { return SUPPRESS_FLASH; }
void doEffect(SPCurve * curve) override;
private:
LPESpiro(const LPESpiro&) = delete;
LPESpiro& operator=(const LPESpiro&) = delete;
};
void sp_spiro_do_effect(SPCurve *curve);
}; //namespace LivePathEffect
}; //namespace Inkscape
#endif
|