diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-12-01 22:13:57 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-12-01 22:13:57 +0000 |
| commit | 5eb7d43e7f43c68191ef9ec616b9bd48c9b6c251 (patch) | |
| tree | 4ed5cac1c941c8e3580bd1010f58d560515fa44b /src/live_effects/lpe-interpolate_points.cpp | |
| parent | Merge branch 'powerpencilII' of https://gitlab.com/inkscape/inkscape into pow... (diff) | |
| download | inkscape-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.cpp | 3 |
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)); |
