summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-interpolate.h
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-07-27 21:15:05 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-07-27 21:15:05 +0000
commitc152b8fa008531e935d9f7bc581bc219ad1b8ac2 (patch)
treee7b4cfe041220c777dfce8f4681bee99c2be6113 /src/live_effects/lpe-interpolate.h
parentfix path (diff)
downloadinkscape-c152b8fa008531e935d9f7bc581bc219ad1b8ac2.tar.gz
inkscape-c152b8fa008531e935d9f7bc581bc219ad1b8ac2.zip
lpe interpolate: fix traversal of trajectory_path. add option for equidistant_spacing
(bzr r6433)
Diffstat (limited to 'src/live_effects/lpe-interpolate.h')
-rw-r--r--src/live_effects/lpe-interpolate.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/live_effects/lpe-interpolate.h b/src/live_effects/lpe-interpolate.h
index 10d21e309..3091537f3 100644
--- a/src/live_effects/lpe-interpolate.h
+++ b/src/live_effects/lpe-interpolate.h
@@ -17,6 +17,7 @@
#include "live_effects/effect.h"
#include "live_effects/parameter/parameter.h"
#include "live_effects/parameter/path.h"
+#include "live_effects/parameter/bool.h"
namespace Inkscape {
namespace LivePathEffect {
@@ -30,9 +31,9 @@ public:
virtual void resetDefaults(SPItem * item);
private:
- PathParam interpolate_path;
+ PathParam trajectory_path;
ScalarParam number_of_steps;
- ScalarParam spacing;
+ BoolParam equidistant_spacing;
LPEInterpolate(const LPEInterpolate&);
LPEInterpolate& operator=(const LPEInterpolate&);