diff options
| author | Thomas Holder <thomas@thomas-holder.de> | 2018-12-16 18:38:00 +0000 |
|---|---|---|
| committer | Thomas Holder <thomas@thomas-holder.de> | 2018-12-16 18:38:00 +0000 |
| commit | 7b687013f2544e1085e9c8c911faeedbbaa712b5 (patch) | |
| tree | 3acd2347f0e2c21f5215fbb0139ca62b28650adf /src/live_effects/effect.cpp | |
| parent | Inkscape::URI::Impl -> shared_ptr (diff) | |
| download | inkscape-7b687013f2544e1085e9c8c911faeedbbaa712b5.tar.gz inkscape-7b687013f2544e1085e9c8c911faeedbbaa712b5.zip | |
remove "Perspective path" LPE
- unmaintained "test effect", nobody knows how it works
- broken with (maybe also without?) yaxisdown=true
Diffstat (limited to 'src/live_effects/effect.cpp')
| -rw-r--r-- | src/live_effects/effect.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 1ba94a2a2..d55f777e5 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -48,7 +48,6 @@ #include "live_effects/lpe-path_length.h" #include "live_effects/lpe-perp_bisector.h" #include "live_effects/lpe-perspective-envelope.h" -#include "live_effects/lpe-perspective_path.h" #include "live_effects/lpe-powerclip.h" #include "live_effects/lpe-powermask.h" #include "live_effects/lpe-powerstroke.h" @@ -156,7 +155,6 @@ const Util::EnumData<EffectType> LPETypeData[] = { {PARALLEL, N_("Parallel"), "parallel"}, {PATH_LENGTH, N_("Path length"), "path_length"}, {PERP_BISECTOR, N_("Perpendicular bisector"), "perp_bisector"}, - {PERSPECTIVE_PATH, N_("Perspective path"), "perspective_path"}, {RECURSIVE_SKELETON, N_("Recursive skeleton"), "recursive_skeleton"}, {TANGENT_TO_CURVE, N_("Tangent to curve"), "tangent_to_curve"}, {TEXT_LABEL, N_("Text label"), "text_label"}, @@ -222,9 +220,6 @@ Effect::New(EffectType lpenr, LivePathEffectObject *lpeobj) case CIRCLE_WITH_RADIUS: neweffect = static_cast<Effect*> ( new LPECircleWithRadius(lpeobj) ); break; - case PERSPECTIVE_PATH: - neweffect = static_cast<Effect*> ( new LPEPerspectivePath(lpeobj) ); - break; case SPIRO: neweffect = static_cast<Effect*> ( new LPESpiro(lpeobj) ); break; |
