From: Ian Jackson Date: Sat, 9 Sep 2017 16:41:46 +0000 (+0100) Subject: shelf-label-holder: Elevation seems functional X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=100761de91387aeba04b5d94ff6b5b54405058b9;p=reprap-play.git shelf-label-holder: Elevation seems functional --- diff --git a/shelf-label-holder.scad b/shelf-label-holder.scad index 0cea5a9..2fa8fad 100644 --- a/shelf-label-holder.scad +++ b/shelf-label-holder.scad @@ -27,7 +27,7 @@ module ProngElevationUnrotated(){ } module Elevation(){ - intersection(){ + difference(){ union(){ rotate(-interference_angle) ProngElevationUnrotated(); @@ -35,7 +35,12 @@ module Elevation(){ mirror([0,1]) rotate(-interference_angle) ProngElevationUnrotated(); + translate([-10, -nom_shelf - prong_thick/2]) + square([10, nom_shelf + prong_thick]); } + mirror([1,0]) + translate([ front_thick, -100 ]) + square([ 50, 200 ]); } }