diff options
| author | VinÃcius dos Santos Oliveira <vini.ipsmaker@gmail.com> | 2014-05-08 00:59:39 +0000 |
|---|---|---|
| committer | VinÃcius dos Santos Oliveira <vini.ipsmaker@gmail.com> | 2014-05-08 00:59:39 +0000 |
| commit | 267adec8dfa7797915cff84b463fef5f9570a6e4 (patch) | |
| tree | 2580dea1021dff4f4cf56f750c978fe251de0868 /src/live_effects/effect.cpp | |
| parent | Documentation. Advanced tutorial update (not fully translated). (diff) | |
| parent | adding const _pathmanipulatos staff to handles (handles also have tips) (diff) | |
| download | inkscape-267adec8dfa7797915cff84b463fef5f9570a6e4.tar.gz inkscape-267adec8dfa7797915cff84b463fef5f9570a6e4.zip | |
Merging Jabier's spirolive+bspline branch
(bzr r13341.2.1)
Diffstat (limited to 'src/live_effects/effect.cpp')
| -rw-r--r-- | src/live_effects/effect.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 4c5e21194..9006e5359 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -19,6 +19,7 @@ #include "live_effects/lpe-rough-hatches.h" #include "live_effects/lpe-dynastroke.h" #include "live_effects/lpe-test-doEffect-stack.h" +#include "live_effects/lpe-bspline.h" #include "live_effects/lpe-gears.h" #include "live_effects/lpe-curvestitch.h" #include "live_effects/lpe-circle_with_radius.h" @@ -120,6 +121,7 @@ const Util::EnumData<EffectType> LPETypeData[] = { /* 0.49 */ {POWERSTROKE, N_("Power stroke"), "powerstroke"}, {CLONE_ORIGINAL, N_("Clone original path"), "clone_original"}, + {BSPLINE, N_("BSpline"), "bspline"}, }; const Util::EnumDataConverter<EffectType> LPETypeConverter(LPETypeData, sizeof(LPETypeData)/sizeof(*LPETypeData)); @@ -228,6 +230,9 @@ Effect::New(EffectType lpenr, LivePathEffectObject *lpeobj) case DOEFFECTSTACK_TEST: neweffect = static_cast<Effect*> ( new LPEdoEffectStackTest(lpeobj) ); break; + case BSPLINE: + neweffect = static_cast<Effect*> ( new LPEBSpline(lpeobj) ); + break; case DYNASTROKE: neweffect = static_cast<Effect*> ( new LPEDynastroke(lpeobj) ); break; |
