Add miter pattern options.

Will document the new options in release notes, then in manual.
Still a bit of work to do on the bulging shape that appears
on cube corners if using arc inner miters, but will do that later.
Also need to do something smarter in clamp overlap.
This commit is contained in:
2019-01-18 12:54:10 -05:00
parent c9938ebb00
commit b640fd829e
13 changed files with 467 additions and 68 deletions

View File

@@ -166,6 +166,11 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
layout.label(text="Set Face Strength Mode")
layout.row().prop(md, "face_strength_mode", expand=True)
layout.label(text="Miter Patterns")
layout.row().prop(md, "miter_outer")
layout.row().prop(md, "miter_inner")
layout.row().prop(md, "spread")
def BOOLEAN(self, layout, ob, md):
split = layout.split()