Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2022-03-11 23:55:42 +0300
committerHans Goudey <h.goudey@me.com>2022-03-11 23:55:42 +0300
commitdb7c4d7a1cf3a4aab7d40df9de5f3f3d33e88cb6 (patch)
treed1008b32109f94219bc12c6f40baab9aa0387896 /source/blender/blenkernel/BKE_spline.hh
parentbd9f94e91720e6d2ce5308344e83c5a787351669 (diff)
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.
Diffstat (limited to 'source/blender/blenkernel/BKE_spline.hh')
-rw-r--r--source/blender/blenkernel/BKE_spline.hh7
1 files changed, 0 insertions, 7 deletions
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;