blob: ce07de854a0a9e1e3a465a9b118f25e164223d5c (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef INKSCAPE_LPE_SPIRO_H
#define INKSCAPE_LPE_SPIRO_H
/*
* Inkscape::LPESpiro
*
* Released under GNU GPL v2+, 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;
LPESpiro(const LPESpiro&) = delete;
LPESpiro& operator=(const LPESpiro&) = delete;
LPEPathFlashType pathFlashType() const override { return SUPPRESS_FLASH; }
void doEffect(SPCurve * curve) override;
};
void sp_spiro_do_effect(SPCurve *curve);
}; //namespace LivePathEffect
}; //namespace Inkscape
#endif
|