From 80465ba35a163c9832a4666fac74465561b7c6c5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 30 Oct 2017 22:36:51 +1100 Subject: Curve Decimate: new tool to simplify bezier curves Access from the curve clean-up menu --- source/blender/makesdna/DNA_curve_types.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source/blender/makesdna/DNA_curve_types.h') diff --git a/source/blender/makesdna/DNA_curve_types.h b/source/blender/makesdna/DNA_curve_types.h index 16647e78eff..a25c00915d2 100644 --- a/source/blender/makesdna/DNA_curve_types.h +++ b/source/blender/makesdna/DNA_curve_types.h @@ -379,6 +379,12 @@ enum { /* *************** BEZTRIPLE **************** */ +/* BezTriple.f1,2,3 */ +typedef enum eBezTriple_Flag { + /* SELECT */ + BEZT_FLAG_TEMP_TAG = (1 << 1), /* always clear. */ +} eBezTriple_Flag; + /* h1 h2 (beztriple) */ typedef enum eBezTriple_Handle { HD_FREE = 0, -- cgit v1.2.3