From fa8d123c6b00b127e876b0c0af4545187f48c10d Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 15 Mar 2013 21:27:00 +0000 Subject: [PATCH] tablet-stand: wip --- tablet-stand.scad | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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(){ -- 2.30.2