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).
This commit is contained in:

committed by
Bastien Montagne

parent
35b1cc806f
commit
cc9bee9162
@@ -1043,6 +1043,10 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
|
||||
sub = col.row()
|
||||
sub.active = bool(md.vertex_group)
|
||||
sub.prop(md, "thickness_vertex_group", text="Factor")
|
||||
if solidify_mode == 'NON_MANIFOLD':
|
||||
sub = col.row()
|
||||
sub.active = bool(md.vertex_group)
|
||||
sub.prop(md, "use_flat_faces")
|
||||
|
||||
if solidify_mode == 'EXTRUDE':
|
||||
col.label(text="Crease:")
|
||||
|
Reference in New Issue
Block a user