From: Tomas Mudrunka Date: Tue, 3 Oct 2023 21:28:33 +0000 (+0200) Subject: rope brush X-Git-Url: https://git.harvie.cz/?p=mirrors%2FDesigns.git;a=commitdiff_plain;h=9b78022cb78e7c2ed049a8575a00eb46b24fc32b rope brush --- diff --git a/openscad/rope-brush.scad b/openscad/rope-brush.scad new file mode 100644 index 0000000..4904a78 --- /dev/null +++ b/openscad/rope-brush.scad @@ -0,0 +1,24 @@ +$fn=8; + +diameter = 30; +height = 20; + +difference() { + cylinder(h=height, d=7, $fn=32); + cylinder(h=height, d=4, $fn=32); +} +//cylinder(h=1 , d=10, $fn=32); + +difference() { + cylinder(h=height, d=diameter+8); + cylinder(h=height, d=diameter+0); +} + +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); +} +} +cylinder(h=height, d=4, $fn=32); +} \ No newline at end of file