Follow focus shell

This commit is contained in:
Christian Colglazier 2022-05-18 09:46:02 -04:00
parent c3980d1e9f
commit c9d6fc0fd8

View File

@ -54,10 +54,14 @@ base = base.threePointArc((center_x+rod_thickness/2, center_y), (last_x, last_y)
base = base.polarLine(d, 180-slant_degree)
base = base.close().extrude(20)
base = base.edges('|Z and >Y').fillet(2.5)
base = base.edges('|Z and <X').fillet(2.5)
# Fillets
outer_fillets=2.5
base = base.edges('|Z and >Y').fillet(outer_fillets)
base = base.edges('|Z and <X').fillet(outer_fillets)
#base = base.edges('|Z').fillet(1)
base = base.faces('+Z').shell(-1.6)
# Render
show_object(base)
show_object(base, name='Follow Focus Base')