From 124983da75225fe39a40c8a265acd3daeefa3e1f Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Sun, 27 Jul 2008 18:58:20 +0000 Subject: add LPE Interpolate (bzr r6431) --- src/live_effects/effect.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/live_effects/effect.cpp') diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 85f392321..8715927e1 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -63,6 +63,7 @@ #include "live_effects/lpe-offset.h" #include "live_effects/lpe-ruler.h" #include "live_effects/lpe-boolops.h" +#include "live_effects/lpe-interpolate.h" // end of includes namespace Inkscape { @@ -98,6 +99,7 @@ const Util::EnumData LPETypeData[INVALID_LPE] = { {OFFSET, N_("Offset"), "offset"}, {RULER, N_("Ruler"), "ruler"}, {BOOLOPS, N_("Boolops"), "boolops"}, + {INTERPOLATE, N_("Interpolate"), "interpolate"}, }; const Util::EnumDataConverter LPETypeConverter(LPETypeData, INVALID_LPE); @@ -183,6 +185,9 @@ Effect::New(EffectType lpenr, LivePathEffectObject *lpeobj) case BOOLOPS: neweffect = static_cast ( new LPEBoolops(lpeobj) ); break; + case INTERPOLATE: + neweffect = static_cast ( new LPEInterpolate(lpeobj) ); + break; default: g_warning("LivePathEffect::Effect::New called with invalid patheffect type (%d)", lpenr); neweffect = NULL; -- cgit v1.2.3