diff options
author | XANTRONIX Development | 2023-11-26 00:32:40 -0500 |
---|---|---|
committer | XANTRONIX Development | 2023-11-26 00:32:40 -0500 |
commit | 3f65b9f62c1f53a341f6e0d0c7109003d10da807 (patch) | |
tree | 9395a7bbfbde9d38aae8f1ba83386bc545157c66 | |
parent | 339168e6d7d28e618aa74147bf7b6bee5c0e9eda (diff) | |
download | xantronix-z32-3f65b9f62c1f53a341f6e0d0c7109003d10da807.tar.gz xantronix-z32-3f65b9f62c1f53a341f6e0d0c7109003d10da807.tar.bz2 xantronix-z32-3f65b9f62c1f53a341f6e0d0c7109003d10da807.zip |
Slowly working things out
-rw-r--r-- | case/params.scad | 4 | ||||
-rw-r--r-- | case/top.scad | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/case/params.scad b/case/params.scad index 2935b4b..b33502a 100644 --- a/case/params.scad +++ b/case/params.scad @@ -1,3 +1,7 @@ +/* [Features] */ +// Enable or disable keyboard deck +with_keyboard = true; + /* [Case wall dimensions:] */ // Wall width (thickness) wall_width = 2.5000; diff --git a/case/top.scad b/case/top.scad index b9c86e7..951cde8 100644 --- a/case/top.scad +++ b/case/top.scad @@ -216,4 +216,4 @@ module top_case(with_keyboard=false) { } } -top_case(true); +top_case(with_keyboard); |