20 lines
447 B
OpenSCAD
20 lines
447 B
OpenSCAD
include <../../lib/metric-machine-screws.scad>;
|
|
|
|
$fn=128;
|
|
difference() {
|
|
union() {
|
|
cylinder(d=20, h=6);
|
|
translate([0, -10, 0]) cube([160, 20, 6]);
|
|
translate([160, 0, 0]) cylinder(d=20, h=6);
|
|
}
|
|
|
|
for (x = [7.5, 68.7, 152.5]) {
|
|
translate([x, 0, -0.01]) union() {
|
|
translate([0, 0, 2.02]) m4Nut(h = 4);
|
|
cylinder(d=4, h=8);
|
|
}
|
|
}
|
|
}
|
|
|
|
//color("blue") translate([80, 0, 0]) rotate([0, 90, 0]) import("Coat_Rack.stl");
|