summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven <steven.vasilogianis@gmail.com>2022-03-14 17:00:04 -0400
committerSteven <steven.vasilogianis@gmail.com>2022-03-14 17:00:04 -0400
commit84d7d6ead6e1f9409c3ddec109d8ff31281c7591 (patch)
treea2056c6006ca02196150c2d33b62ef4506b56267
parente4170626e045a77fdc5528ccd6df55305f74421c (diff)
more consistent comment syntax
-rw-r--r--cubbies.scad4
1 files changed, 2 insertions, 2 deletions
diff --git a/cubbies.scad b/cubbies.scad
index aa777c6..9497c5e 100644
--- a/cubbies.scad
+++ b/cubbies.scad
@@ -97,7 +97,7 @@ module cubby_bottom (width, depth) {
97 } 97 }
98} 98}
99 99
100/* this calculation needs to be referenced by the view_tab_fit function */ 100// this calculation needs to be referenced by the view_tab_fit function
101function cubby_side_bracket_height() = double(tab_height) + tab_tolerance; 101function cubby_side_bracket_height() = double(tab_height) + tab_tolerance;
102module cubby_side (depth, height, screw_tabs=true) { 102module cubby_side (depth, height, screw_tabs=true) {
103 let (_=assert_cubby_depth()); 103 let (_=assert_cubby_depth());
@@ -163,7 +163,7 @@ module male_tabs (w, d) {
163} 163}
164 164
165module female_tabs (d, h) { 165module female_tabs (d, h) {
166 /* text inscribed (when printing tolerances) */ 166 // text inscribed (when printing tolerances)
167 text_inscription_depth=0.6; 167 text_inscription_depth=0.6;
168 text_size=thickness * 0.9; 168 text_size=thickness * 0.9;
169 text=str(tab_tolerance); 169 text=str(tab_tolerance);