From 32b6451a7fcf6c3fc004f7026674ce1a5eafa4f2 Mon Sep 17 00:00:00 2001 From: Bob - Home - Windows Date: Sat, 17 Feb 2018 20:35:18 -0500 Subject: [PATCH] fix filled stem now that we are dishing stems instead of intersecting them with the shape --- src/stems/filled.scad | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/stems/filled.scad b/src/stems/filled.scad index 80248f4..5dc9152 100644 --- a/src/stems/filled.scad +++ b/src/stems/filled.scad @@ -1,5 +1,9 @@ module filled_stem() { - // this is mostly for testing. we don't pass the size of the keycp in here - // so we can't make this work for all keys - cube(1000, center=true); + // I broke the crap out of this stem type due to the changes I made around how stems are differenced + // now that we just take the dish out of stems in order to support stuff like + // bare stem keycaps (and buckling spring eventually) we can't just make a + // cube. shape() works but means that you certainly couldn't render this + // stem without the presence of the entire library + + shape(); }