From: Ian Jackson Date: Fri, 15 Mar 2013 21:27:00 +0000 (+0000) Subject: tablet-stand: wip X-Git-Tag: filamentspool-v2-release~581^2~2 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=fa8d123c6b00b127e876b0c0af4545187f48c10d;p=reprap-play.git tablet-stand: wip --- diff --git a/tablet-stand.scad b/tablet-stand.scad index 1941714..d7ef564 100644 --- a/tablet-stand.scad +++ b/tablet-stand.scad @@ -43,12 +43,11 @@ module LeftLeg(){ effective_depth = whole_depth - antifoot_back; translate([-effective_depth, -whole_width/2, 0]) AntiFoot(); - multmatrix([[1,0,0,0], - [-((whole_width - leg_width)/2 / effective_depth), 1,0,0], - [0,0,1,0], - [0,0,0,1]]) - mirror([1,0,0]) - cube([effective_depth, leg_width, leg_thick]); + hull(){ + translate([-effective_depth-leg_width/2, -whole_width/2, 0]) + cylinder(r=leg_width/2, h=antifoot_base); + cylinder(r=leg_width/2, h=post_height); + } } module RightLeg(){