1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-12 09:44:16 +02:00
This commit is contained in:
Justin Lin
2019-09-11 14:16:08 +08:00
parent 3ae965216b
commit d2d9a0b48f

View File

@@ -114,29 +114,27 @@ module floor_stand(width, height, thickness, joint_spacing) {
square(width, center = true); square(width, center = true);
} }
module carve_slot_foot() {
rotate([-80, 0, 0])
difference() {
rotate([80, 0, 0]) union() {
color("yellow") children();
translate([0, -height / 1.8, 0]) border();
}
ground_df();
}
}
// stick // stick
translate([width, 0, 0]) translate([width, 0, 0])
stick(); stick();
translate([0, 0, thickness / 2]) translate([0, 0, thickness / 2])
rotate([-80, 0, 0]) carve_slot_foot() board1();
difference() {
rotate([80, 0, 0]) union() {
color("yellow") board1();
translate([0, -height / 1.8, 0]) border();
}
ground_df();
}
translate([0, 0, thickness / 2]) translate([0, 0, thickness / 2])
rotate([80, 0, 0]) rotate(180)
difference() { carve_slot_foot() board2();
rotate([-80, 0, 0]) rotate(180) union() {
color("yellow") board2();
translate([0, -height / 1.8, 0]) border();
}
ground_df();
}
children(); children();
rotate(180) rotate(180)