From 52cb692b17e666838b819e87a69dfe2e5bac43b9 Mon Sep 17 00:00:00 2001 From: Tomas Mudrunka Date: Sat, 18 Jan 2025 23:54:13 +0100 Subject: [PATCH] Tighter hold --- openscad/cam_turret.scad | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openscad/cam_turret.scad b/openscad/cam_turret.scad index c4cea78..a22c73f 100644 --- a/openscad/cam_turret.scad +++ b/openscad/cam_turret.scad @@ -1,3 +1,4 @@ +//Ball dome camera turret, (c) Tomas Mudrunka 2025 //I've printed this in PETG, 0.24mm layer, 0.6mm nozzle, no supports $fn=64; @@ -14,7 +15,7 @@ module camball(d, cutout=0, toler=0, lens=30) { //Additional clearances to be removed from ball holder if(cutout) { //Hole to insert the ball - translate([0,0,-d]) cylinder(d1=d+4, d2=d-8, h=d); + translate([0,0,-d]) cylinder(d1=d+4, d2=d-9, h=d); //Range of ball rotation: hull() for ( i = [0 : 10 : 70] ) { -- 2.30.2