Lepsi ulozeni koule
authorTomas Mudrunka <tomas.mudrunka@gmail.com>
Sat, 18 Jan 2025 22:22:34 +0000 (23:22 +0100)
committerTomas Mudrunka <tomas.mudrunka@gmail.com>
Sat, 18 Jan 2025 22:22:34 +0000 (23:22 +0100)
openscad/cam_turret.scad

index a99ddf2a654ef927234c132d7caa1e5bb3a3b897..95bb9112f05411dd936d13814c1fcdb79c913140 100644 (file)
@@ -1,3 +1,5 @@
+//I've printed this in PETG, 0.24mm layer, 0.6mm nozzle, no supports
+
 $fn=64;
 dia=45; //Diameter of ball, TODO: some things are not ready to change this
 tol=0.3; //Worst case scenario tolerance for well maintained ender3 :-)
@@ -12,7 +14,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-4, h=d);
+               translate([0,0,-d]) cylinder(d1=d+4, d2=d-8, h=d);
                
                //Range of ball rotation:
                hull() for ( i = [0 : 10 : 70] ) {
@@ -41,7 +43,7 @@ module ballholder(d) {
                
                //This makes everything more flexy
                hull() {
-                       sphere(d=d-4);
+                       translate([0,d/4,0]) sphere(d=d/2);
                        translate([0,d/1.85,-d/2-10]) cylinder(d=d/2, h=10);
                }
                
This page took 0.151741 seconds and 4 git commands to generate.