diff options
Diffstat (limited to 'screen-spacer.scad')
-rw-r--r-- | screen-spacer.scad | 12 |
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]); + } +} |