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>2012-10-23 09:30:10 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-10-23 09:30:10 +0400
commit1ea210a8dcab7f9123e8680844835c876c61b0e4 (patch)
tree1dc9cc9e32f9685039dcef69484baab3cfdaabbc /source/blender/makesdna/DNA_modifier_types.h
parentbbe0deb8afb0094b169a9abb04df7458cd49786b (diff)
add option for decimate-collapse to keep triangulated geometry (normally quads stay as quads when not collapsed).
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 6853eefd2ec..477d2c28f7c 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -374,7 +374,8 @@ typedef struct DecimateModifierData {
} DecimateModifierData;
enum {
- MOD_DECIM_FLAG_INVERT_VGROUP = (1 << 0)
+ MOD_DECIM_FLAG_INVERT_VGROUP = (1 << 0),
+ MOD_DECIM_FLAG_TRIANGULATE = (1 << 1) /* for collapse only. dont convert tri pairs back to quads */
};
enum {