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:
authorJoshua Leung <aligorith@gmail.com>2010-05-27 15:56:31 +0400
committerJoshua Leung <aligorith@gmail.com>2010-05-27 15:56:31 +0400
commit5d6bdd7c2ea0413b707dd08d3b3b67154ccd9a55 (patch)
tree60247689e80fd7a491bbbdfb63b2c02bccd118b4 /source/blender/makesdna/DNA_constraint_types.h
parente689ca078d255963d11de2448847eb7a65bccc2b (diff)
Various constraint code cleanups:
1) Fixed some weird formatting introduced during math-lib cleanups, and some other inconsistencies 2) Optimised the Maintain Volume constraint by taking the value calculations out Copy All Constraints Operators: * Added one for bones too * These are now included in the menus * Removed some weird/extra code copying/changing/bleh the actcol/totcol stuff...
Diffstat (limited to 'source/blender/makesdna/DNA_constraint_types.h')
-rw-r--r--source/blender/makesdna/DNA_constraint_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h
index 00694a7ea1f..f310e5e55e0 100644
--- a/source/blender/makesdna/DNA_constraint_types.h
+++ b/source/blender/makesdna/DNA_constraint_types.h
@@ -211,7 +211,7 @@ typedef struct bSizeLikeConstraint {
/* Maintain Volume Constraint */
typedef struct bSameVolumeConstraint {
- int flag;
+ int flag;
float volume;
} bSameVolumeConstraint;