From db7c4d7a1cf3a4aab7d40df9de5f3f3d33e88cb6 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Fri, 11 Mar 2022 14:55:42 -0600 Subject: Cleanup: Use new enum for NURBS curve knots modes Move the definition of the enum to `Curves` DNA, since the values will be saved in files, and ongoing development needs to use this. --- source/blender/blenkernel/BKE_spline.hh | 7 ------- 1 file changed, 7 deletions(-) (limited to 'source/blender/blenkernel/BKE_spline.hh') diff --git a/source/blender/blenkernel/BKE_spline.hh b/source/blender/blenkernel/BKE_spline.hh index ed9b743b524..1e3134020c6 100644 --- a/source/blender/blenkernel/BKE_spline.hh +++ b/source/blender/blenkernel/BKE_spline.hh @@ -449,13 +449,6 @@ class BezierSpline final : public Spline { */ class NURBSpline final : public Spline { public: - enum class KnotsMode { - Normal, - EndPoint, - Bezier, - EndPointBezier, - }; - /** Method used to recalculate the knots vector when points are added or removed. */ KnotsMode knots_mode; -- cgit v1.2.3