summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-interpolate_points.cpp
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2017-12-01 22:13:57 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2017-12-01 22:13:57 +0000
commit5eb7d43e7f43c68191ef9ec616b9bd48c9b6c251 (patch)
tree4ed5cac1c941c8e3580bd1010f58d560515fa44b /src/live_effects/lpe-interpolate_points.cpp
parentMerge branch 'powerpencilII' of https://gitlab.com/inkscape/inkscape into pow... (diff)
downloadinkscape-5eb7d43e7f43c68191ef9ec616b9bd48c9b6c251.tar.gz
inkscape-5eb7d43e7f43c68191ef9ec616b9bd48c9b6c251.zip
Working on BSpline interpolator
Diffstat (limited to 'src/live_effects/lpe-interpolate_points.cpp')
-rw-r--r--src/live_effects/lpe-interpolate_points.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/live_effects/lpe-interpolate_points.cpp b/src/live_effects/lpe-interpolate_points.cpp
index 7d4c88dc1..c745921c2 100644
--- a/src/live_effects/lpe-interpolate_points.cpp
+++ b/src/live_effects/lpe-interpolate_points.cpp
@@ -25,7 +25,8 @@ static const Util::EnumData<unsigned> InterpolatorTypeData[] = {
{Geom::Interpolate::INTERP_CUBICBEZIER , N_("CubicBezierFit"), "CubicBezierFit"},
{Geom::Interpolate::INTERP_CUBICBEZIER_JOHAN , N_("CubicBezierJohan"), "CubicBezierJohan"},
{Geom::Interpolate::INTERP_SPIRO , N_("SpiroInterpolator"), "SpiroInterpolator"},
- {Geom::Interpolate::INTERP_CENTRIPETAL_CATMULLROM, N_("Centripetal Catmull-Rom"), "CentripetalCatmullRom"}
+ {Geom::Interpolate::INTERP_CENTRIPETAL_CATMULLROM, N_("Centripetal Catmull-Rom"), "CentripetalCatmullRom"},
+ {Geom::Interpolate::INTERP_BSPLINE , N_("BSpline"), "BSpline"}
};
static const Util::EnumDataConverter<unsigned> InterpolatorTypeConverter(InterpolatorTypeData, sizeof(InterpolatorTypeData)/sizeof(*InterpolatorTypeData));