Vylepseni rope brushe
authorTomas Mudrunka <tomas.mudrunka@gmail.com>
Tue, 3 Oct 2023 22:10:29 +0000 (00:10 +0200)
committerTomas Mudrunka <tomas.mudrunka@gmail.com>
Tue, 3 Oct 2023 22:10:29 +0000 (00:10 +0200)
openscad/rope-brush.scad

index 4904a7802f3fd6aca49dc512041e69bd7ff03f88..8bfa0af6ed1abb4d59f783933e3ee47f5563ade2 100644 (file)
@@ -4,20 +4,23 @@ diameter = 30;
 height = 20;
 
 difference() {
-       cylinder(h=height, d=7, $fn=32);
-       cylinder(h=height, d=4, $fn=32);
+       cylinder(h=height, d=7, $fn=64);
+       cylinder(h=height, d=4, $fn=64);
 }
-//cylinder(h=1 , d=10, $fn=32);
+//cylinder(h=1 , d=10, $fn=64);
 
 difference() {
-       cylinder(h=height, d=diameter+8);
+       cylinder(h=height, d=diameter+6);
        cylinder(h=height, d=diameter+0);
+       for (h = [0 : 1 : height-2]) { //SAME!
+               translate([0,0,1+h]) cylinder(h=0.2, d=diameter+1.6, center=true);
+       }
 }
 
 difference() {
-for (h = [0 : 1 : height-2]) {
-for (i = [0 : 4 : 180]) {
-       translate([0,0,1+h]) rotate([90,0,i+(h*3)]) cube([0.2,0.2,diameter+3], center=true);
+for (h = [0 : 1 : height-2]) { //SAME!
+for (i = [0 : 4.5 : 180]) {
+       translate([0,0,1+h]) rotate([90,0,i+(h*3)]) cube([0.2,0.2,diameter+2], center=true);
 }
 }
 cylinder(h=height, d=4, $fn=32);
This page took 0.121581 seconds and 4 git commands to generate.