diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-07-27 21:15:05 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-07-27 21:15:05 +0000 |
| commit | c152b8fa008531e935d9f7bc581bc219ad1b8ac2 (patch) | |
| tree | e7b4cfe041220c777dfce8f4681bee99c2be6113 /src/live_effects/lpe-interpolate.h | |
| parent | fix path (diff) | |
| download | inkscape-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.h | 5 |
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&); |
