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:
authorCampbell Barton <ideasman42@gmail.com>2013-06-25 14:49:20 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-25 14:49:20 +0400
commit64968e3618892ebac419149fa8c4198151a4e29a (patch)
treec54a16c2f3f4efcb6c9feb060f9aa35bffa4fa6b /source/blender/makesdna
parent37f59451889d64e588ace4f16f7eebd085d8147a (diff)
patch [#35830] Add Catmull-Rom spline as an option for lattice deformer
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_key_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_key_types.h b/source/blender/makesdna/DNA_key_types.h
index 4783247420c..0a09a82b2bb 100644
--- a/source/blender/makesdna/DNA_key_types.h
+++ b/source/blender/makesdna/DNA_key_types.h
@@ -125,7 +125,8 @@ enum {
enum {
KEY_LINEAR = 0,
KEY_CARDINAL = 1,
- KEY_BSPLINE = 2
+ KEY_BSPLINE = 2,
+ KEY_CATMULL_ROM = 3,
};
/* KeyBlock->flag */