From cc9bee9162b022a42b720a127c65b433fcbd8c60 Mon Sep 17 00:00:00 2001 From: Henrik Dick Date: Tue, 14 Apr 2020 12:22:00 +0200 Subject: Add Complex Solidify option for thickness per face Add an option to solidify complex which will make faces which have thickness controlled by vertex weights flat/even, and parallel to their original face. For each face it uses the minimal weight assigned to its vertices to control the thickness. This will help users for example in architecture or basic CAD design by finally making solidify work there at all if altering thickness is needed. Differential Revision: https://developer.blender.org/D7340 Reviewed and minor cleanups by Batien Montagne (@mont29). --- source/blender/makesdna/DNA_modifier_types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h index 225842e4b9e..9e58d7df042 100644 --- a/source/blender/makesdna/DNA_modifier_types.h +++ b/source/blender/makesdna/DNA_modifier_types.h @@ -1192,6 +1192,7 @@ enum { MOD_SOLIDIFY_FLIP = (1 << 5), MOD_SOLIDIFY_NOSHELL = (1 << 6), MOD_SOLIDIFY_OFFSET_ANGLE_CLAMP = (1 << 7), + MOD_SOLIDIFY_NONMANIFOLD_FLAT_FACES = (1 << 8), }; /** #SolidifyModifierData.mode */ -- cgit v1.2.3