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:
authorJiri Hnidek <jiri.hnidek@tul.cz>2005-03-29 14:03:30 +0400
committerJiri Hnidek <jiri.hnidek@tul.cz>2005-03-29 14:03:30 +0400
commit53437f95368aac4263fc4c68d2691bf61d1dc353 (patch)
tree06e7240ff2934af98b50551500c2f875dfa1d846 /source/blender/makesdna/DNA_meta_types.h
parentea92a5619384fe3d7365998c3c54394e4df7c76c (diff)
- it is possible to rotate with MetaBalls in edit mode now
Diffstat (limited to 'source/blender/makesdna/DNA_meta_types.h')
-rw-r--r--source/blender/makesdna/DNA_meta_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_meta_types.h b/source/blender/makesdna/DNA_meta_types.h
index 4562080a7c0..0760f35540b 100644
--- a/source/blender/makesdna/DNA_meta_types.h
+++ b/source/blender/makesdna/DNA_meta_types.h
@@ -50,9 +50,9 @@ typedef struct MetaElem {
short type, lay, flag, selcol;
float x, y, z; /* Position of centre of MetaElem */
- float expx, expy, expz;
- float rad, rad2, s, len, maxrad2;
- int pad;
+ float quat[4]; /* Rotation of MetaElem */
+ float expx, expy, expz; /* dx, dy, dz parameters */
+ float rad, rad2, s, len;
float *mat, *imat;
@@ -103,7 +103,7 @@ typedef struct MetaBall {
/* ml->flag */
#define MB_NEGATIVE 2
-#define MB_HIDE 4
+#define MB_HIDE 8
#endif