chiark / gitweb /
poster-tube-lid: wip BayonetCutout
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 8 Oct 2017 00:55:37 +0000 (01:55 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 8 Oct 2017 00:55:37 +0000 (01:55 +0100)
poster-tube-lid.scad

index 8c53a57029912f94263669733793b771cd67b9bf..a30a1b4901c883c250805c7ebf8c74a3757708e7 100644 (file)
@@ -46,7 +46,7 @@ bayo_entry_ramp = bayo_entry + bayo_interf;
 rivet_entry_width = rivet_width + side_rivet_gap;
 
 $fs=0.5;
-$fa=5;
+$fa=1;
 
 // bayonet definition
 
@@ -111,7 +111,15 @@ module MainProfile(){
 }
 
 module BayonetCutout(){
-  polygon(bayo_polygon);
+  offset = 5;
+  intersection(){
+    translate([offset, -10, 0])
+      rotate([90,0,0])
+      linear_extrude(height= main_dia*2)
+      polygon(bayo_polygon);
+    translate([0,0, -25])
+      cylinder(h=50, r= main_dia/2 + rivet_tall);
+  }
 }
 
 module ProfilesDemo(){