1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-19 13:01:37 +02:00
This commit is contained in:
Justin Lin
2019-09-11 14:49:55 +08:00
parent 47228742ed
commit 2760ba2b65

View File

@@ -37,7 +37,7 @@ module floor_stand(width, height, thickness, joint_spacing) {
joint_top();
}
module board1() {
module board_U() {
difference() {
union() {
linear_extrude(thickness, center = true)
@@ -58,7 +58,7 @@ module floor_stand(width, height, thickness, joint_spacing) {
}
}
module board2() {
module board_T() {
linear_extrude(thickness, center = true)
union() {
difference() {
@@ -118,11 +118,13 @@ module floor_stand(width, height, thickness, joint_spacing) {
stick();
translate([0, 0, half_th])
decorate() board1();
decorate()
board_U();
translate([0, 0, half_th])
rotate(180)
decorate() board2();
decorate()
board_T();
children();
rotate(180)