aboutsummaryrefslogtreecommitdiff
path: root/screen-spacer.scad
diff options
context:
space:
mode:
authorThomas Albers Raviola <thomas@thomaslabs.org>2024-11-21 15:13:52 +0100
committerThomas Albers Raviola <thomas@thomaslabs.org>2024-11-21 15:13:52 +0100
commit871a8d65f0d92929f64b5feca51b892307bebca9 (patch)
tree10a8c4ece76530618c573cec80a0e25d047768f5 /screen-spacer.scad
Initial commit
Diffstat (limited to 'screen-spacer.scad')
-rw-r--r--screen-spacer.scad12
1 files changed, 12 insertions, 0 deletions
diff --git a/screen-spacer.scad b/screen-spacer.scad
new file mode 100644
index 0000000..e647ec4
--- /dev/null
+++ b/screen-spacer.scad
@@ -0,0 +1,12 @@
+// All dimensions are assumed to be given in millimeters
+
+function inches_to_mm(inches) = inches * 25.4;
+
+width = inches_to_mm(3.80);
+height = inches_to_mm(0.20);
+
+for (i=[0:1]) {
+ translate(v=[0, 2 * i * height, 0]){
+ cube([width,height,2]);
+ }
+}