X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=tablet-stand.scad;h=d7ef5645d2fd0031de04d59835e5975777bbe8fe;hp=194171406b74397b9cda2b5c9769606d19035201;hb=786d945b418b1fb369f8457732149569ff5ee866;hpb=17c176d1d173c5ea958d49e90dfda06eec75e176 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(){