X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=mic-camera-adapter.scad;h=a6cb9f6c355cba2dac0d612525422dbb7af1e2f3;hb=ba7c5b240dcdab5fa3f4e3f7823bb828551471f0;hp=0fdd26ca75bda633607686b7dc6c41ef79147640;hpb=4227a17e234126188f8fa7e6059c2b377f8f3e6c;p=reprap-play.git diff --git a/mic-camera-adapter.scad b/mic-camera-adapter.scad index 0fdd26c..a6cb9f6 100644 --- a/mic-camera-adapter.scad +++ b/mic-camera-adapter.scad @@ -1,7 +1,7 @@ // -*- C -*- // print on High Detail -// but adjust infill to 50% +// but adjust infill to 50%, shell thickness to 2mm include include @@ -9,6 +9,8 @@ include positive_dia = inch * 3/8. - 0.375; positive_l = inch * 1/2.; +negative_l = negative_default_l; + negative_wall = 4; midsection = 4; @@ -43,22 +45,8 @@ module Adapter(){ } } } - translate([0,0, midsection]) { - english_thread(diameter=negative_dia/inch, - threads_per_inch=negative_tpi, - leadin=0, internal=true, test=$test, - length= (negative_l + inch/19) / inch); - translate([0,0, negative_l]) { - hull(){ - translate([0,0, negative_chamfer]) - cylinder(r= negative_dia/2 + negative_chamfer*2, - h=1); - mirror([0,0,1]) - cylinder(r= negative_dia/2 - negative_chamfer*2, - h= negative_chamfer*3); - } - } - } + translate([0,0, midsection + negative_l]) + CameraMountThread(negative_l); } } }