summaryrefslogtreecommitdiff
path: root/enclosure/lyza/standoffs.scad
diff options
context:
space:
mode:
Diffstat (limited to 'enclosure/lyza/standoffs.scad')
-rw-r--r--enclosure/lyza/standoffs.scad17
1 files changed, 17 insertions, 0 deletions
diff --git a/enclosure/lyza/standoffs.scad b/enclosure/lyza/standoffs.scad
new file mode 100644
index 0000000..61d3ef4
--- /dev/null
+++ b/enclosure/lyza/standoffs.scad
@@ -0,0 +1,17 @@
+inner_dia = 3.0;
+outer_dia = inner_dia + 2*1.5;
+height = 18.0;
+eps = 0.1;
+
+module standoff() {
+ difference() {
+ cylinder(h=height, d=outer_dia);
+ translate([0, 0, -eps]) cylinder(h=height+2*eps, d=inner_dia);
+ }
+}
+
+module standoff_group() {
+ standoff();
+}
+
+standoff_group($fn=25); \ No newline at end of file