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-02-21 13:40:30 +0300
committerJiri Hnidek <jiri.hnidek@tul.cz>2005-02-21 13:40:30 +0300
commitc2e6ced9b8b65f54f23a68ef2c062f871783cc1a (patch)
tree2a5330e1e452485bc1c49d52603c74e095adb25a /source/blender/makesdna/DNA_meta_types.h
parent597da98a71c984afdf78d7e97e843f9104ac9d6c (diff)
- added "hide" flag for MetaElem. Hidden MetaElem doesn't influence polygonisation.
It is useful for large scenes, when you work with lot of MetaElems. Example: http://e-learning.vslib.cz/~hnidek/pics/deer.jpg (PildaNovak's model) - shortcuts for hiding of MetaElems: H ......... hide all selected MetaElems Shift-H ... hide all unselected MetaElems Alt-H ..... unhide all hidden MetaElems - items in header menu of 3dview
Diffstat (limited to 'source/blender/makesdna/DNA_meta_types.h')
-rw-r--r--source/blender/makesdna/DNA_meta_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_meta_types.h b/source/blender/makesdna/DNA_meta_types.h
index e9d0c841b53..4562080a7c0 100644
--- a/source/blender/makesdna/DNA_meta_types.h
+++ b/source/blender/makesdna/DNA_meta_types.h
@@ -103,6 +103,7 @@ typedef struct MetaBall {
/* ml->flag */
#define MB_NEGATIVE 2
+#define MB_HIDE 4
#endif