$fn = 128; include difference() { rotate_extrude(angle=360, convexity=10) import("../svg/v2_bottom.svg"); translate([0,0,-1]) { for(i=[1:1:3]) { rotate([0,0,i*120]) { linear_extrude(26) import("../svg/v2_tripod_holes.svg"); } } } // Legs screw holes color("red") { for(i=[1:1:3]) { translate ([0,0,10]) { rotate([0,90,i*120-90]) { linear_extrude(height=35,center=true) import("../svg/v2_screw_holes.svg"); } } } } // Hexagonal screw hole color("green") { rotate([0,0,150]) { translate ([0,-15,10]) { union() { rotate([90,90,0]) { DIN931("M5"); } translate ([0,3,0]) { rotate([90,90,0]) { DIN931("M5"); } } } } } } }