//root-pod-2 //by Andrew Barney //Rabbit Mountain Research //Oct-10-2021 //plant stem rooting pod by air-layering method //requires use of two 2" Black xGarden Clone Collars //https://www.amazon.com/gp/product/B01GDPCS96 $fn=360; //high resolution faces (long render time) difference() { difference() { union(){ //main cylinder rotate([90,0,0]) cylinder(h = 82,d=53,center = true); //screw tabs translate ([-26.5,0,4/2]) cylinder(h=4,r=12,center = true); translate ([26.5,0,4/2]) cylinder(h=4,r=12,center = true); } //cut bottom off translate ([0,0,-26.5/2]) cube([80,100,26.5], center = true); } //extrude cut center all rotate([90,0,0]) color("blue") cylinder(h = 100,d = 25,center = true); //extrude cut 1 translate ([0,-29.5,0]) rotate([90,0,0]) color("red") cylinder(h = 18,d = 48,center = true); //extrude cut 2 translate ([0,29.5,0]) rotate([90,0,0]) color("red") cylinder(h = 18,d = 48,center = true); //extrude cut 3 rotate([90,0,0]) color("green") cylinder(h=36,d=48,center = true); //extrude cut screw holes translate ([-31.94,0,0]) cylinder(h=11,d=6.6,center = true); translate ([31.94,0,0]) cylinder(h=11,d=6.6,center = true); } //text "ROOT POD2" //uncomment below for text letters //translate ([-1,-30,26.5]) rotate([0,0,90]) color("red") linear_extrude(5,center=true) text("ROOT", font = "Liberation Sans:style=Bold"); //translate ([10.5,-10,26.5]) rotate([0,0,90]) color("red") linear_extrude(5,center=true) text("POD2", font = "Liberation Sans:style=Bold");