From 871a8d65f0d92929f64b5feca51b892307bebca9 Mon Sep 17 00:00:00 2001 From: Thomas Albers Raviola Date: Thu, 21 Nov 2024 15:13:52 +0100 Subject: Initial commit --- keys.scad | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 keys.scad (limited to 'keys.scad') diff --git a/keys.scad b/keys.scad new file mode 100644 index 0000000..56f6d77 --- /dev/null +++ b/keys.scad @@ -0,0 +1,20 @@ +// All dimensions are assumed to be given in millimeters + +major_width = 7; +// major_height = 1; +major_height = 8; + +minor_width = 5; +minor_height = 4; + +for (i=[0:0]) { + union() { + translate(v=[10*i, 0, minor_height / 2]) { + cube([minor_width, minor_width, minor_height], center=true); + } + + translate(v=[10*i, 0, - major_height / 2]) { + cube([major_width, major_width, major_height], center=true); + } + } +} -- cgit v1.2.3