summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven <steven.vasilogianis@gmail.com>2021-11-16 16:01:07 -0500
committerSteven <steven.vasilogianis@gmail.com>2021-11-16 16:01:07 -0500
commitc03b200869fdc03a63792d149589000efbfccc00 (patch)
treee94c7e8bc49aa79b8fdcb6b5a98f7158fed16d94
parent1248452dcd5a51aaa87a988effe157b62ba61e9d (diff)
more documentation
-rwxr-xr-xcubbies.sh17
1 files changed, 11 insertions, 6 deletions
diff --git a/cubbies.sh b/cubbies.sh
index d29769d..43a2416 100755
--- a/cubbies.sh
+++ b/cubbies.sh
@@ -3,6 +3,9 @@
3 3
4usage() { 4usage() {
5 cat <<EOF 5 cat <<EOF
6$0: generate sets of cubbies. You will need print the side piece twice for your
7first bottom piece, then a single side piece for each additional bottom piece.
8
6Usage: 9Usage:
7$0 cubby-depth cubby-height cubby-width1 [cubby-width2 ... cubby-widthN] 10$0 cubby-depth cubby-height cubby-width1 [cubby-width2 ... cubby-widthN]
8 11
@@ -11,19 +14,21 @@ Examples:
11 $0 150 90 20 14 $0 150 90 20
12 15
13 Generates two total pieces: a side piece (150mm depth, 90mm height) and a 16 Generates two total pieces: a side piece (150mm depth, 90mm height) and a
14 bottom piece (150mm depth and 20mm width). 17 bottom piece (150mm depth and 20mm width). You will need to print the side
15 18 piece twice and bottom piece once.
16 You will need to print the side piece twice and bottom piece once.
17 19
18 $0 180 120 20 30 35 20 $0 180 120 20 30 35
19 21
20 Generates four total pieces, which can be assembled to form a row of 22 Generates four total pieces, which can be assembled to form a row of
21 cubbies: one side piece (180mm depth, 120mm height) and three bottom pieces, 23 cubbies: one side piece (180mm depth, 120mm height) and three bottom pieces,
22 with widths of 20mm, 30mm, and 35mm (and each sharing the same depth of 24 with widths of 20mm, 30mm, and 35mm (and each sharing the same depth of
23 180mm). 25 180mm). The side piece will need to be printed 4 times, and each bottom
26 piece printed once.
27
28 thickness=3 strut_thickness=4 $0 200 140 20
24 29
25 You will need to side piece twice for the first bottom piece, then 30 You can override any of the other variables from your scad file by passing
26 a single side piece for each additional bottom piece. 31 them into $0 in this manner.
27EOF 32EOF
28} 33}
29 34