aboutsummaryrefslogtreecommitdiff
path: root/screen-spacer.scad
blob: e647ec45c66bedb633ea3168bc0c3771100e46d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
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]);
    }
}