From 2760ba2b657c4bc09f42eaab2c68299a58055afa Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Wed, 11 Sep 2019 14:49:55 +0800 Subject: [PATCH] rename --- examples/floor_stand/floor_stand.scad | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/floor_stand/floor_stand.scad b/examples/floor_stand/floor_stand.scad index b182a618..dfd041b0 100644 --- a/examples/floor_stand/floor_stand.scad +++ b/examples/floor_stand/floor_stand.scad @@ -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)