From ec58f413b1c77bcaa0ad0db4f751e75753cb5b03 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Sun, 23 Oct 2005 21:36:24 +0000 Subject: Autohandles in Ipo Window still could overshoot. Added a new clamping to ensure the handles never result in a curve that goes beyond the neighbour control points. http://www.blender.org/cms/Animation_Curve_Handle.717.0.html --- source/blender/makesdna/DNA_curve_types.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (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 2078875215f..b5ed8c9102a 100644 --- a/source/blender/makesdna/DNA_curve_types.h +++ b/source/blender/makesdna/DNA_curve_types.h @@ -237,10 +237,11 @@ typedef struct IpoCurve { #define CU_CYCLIC 1 /* h1 h2 (beztriple) */ -#define HD_FREE 0 -#define HD_AUTO 1 -#define HD_VECT 2 -#define HD_ALIGN 3 +#define HD_FREE 0 +#define HD_AUTO 1 +#define HD_VECT 2 +#define HD_ALIGN 3 +#define HD_AUTO_ANIM 4 /* *************** CHARINFO **************** */ -- cgit v1.2.3