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:
authorTon Roosendaal <ton@blender.org>2005-10-24 01:36:24 +0400
committerTon Roosendaal <ton@blender.org>2005-10-24 01:36:24 +0400
commitec58f413b1c77bcaa0ad0db4f751e75753cb5b03 (patch)
tree472af1623136ace75ff7799344f6673491331087 /source/blender/makesdna/DNA_curve_types.h
parente02336653df6177dbca04e9b624b0abef8c9f910 (diff)
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
Diffstat (limited to 'source/blender/makesdna/DNA_curve_types.h')
-rw-r--r--source/blender/makesdna/DNA_curve_types.h9
1 files changed, 5 insertions, 4 deletions
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 **************** */