1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-20 05:21:38 +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(); joint_top();
} }
module board1() { module board_U() {
difference() { difference() {
union() { union() {
linear_extrude(thickness, center = true) 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) linear_extrude(thickness, center = true)
union() { union() {
difference() { difference() {
@@ -118,11 +118,13 @@ module floor_stand(width, height, thickness, joint_spacing) {
stick(); stick();
translate([0, 0, half_th]) translate([0, 0, half_th])
decorate() board1(); decorate()
board_U();
translate([0, 0, half_th]) translate([0, 0, half_th])
rotate(180) rotate(180)
decorate() board2(); decorate()
board_T();
children(); children();
rotate(180) rotate(180)