// -*- C -*- screwrad = 4.3 / 2 + 0.30; shaftrad = 7.5 / 2 - 0.30; diskrad = 12.0 / 2 - 0.25; csinkpart = 0.5; shaftlen = 4; diskthick = 1.5; disktaperratio = 2; // computed disktaperrad = diskrad - diskthick / disktaperratio; totallen = shaftlen + diskthick; module SidePlan(){ polygon([[-screwrad, 0], [-disktaperrad, 0], [-diskrad, -diskthick], [-shaftrad, -diskthick], [-shaftrad, -totallen], [-screwrad, -totallen]]); } module Bush(){ rotate_extrude($fn=50, convexity=3){ SidePlan(); } } //SidePlan(); Bush();