summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven <steven.vasilogianis@gmail.com>2021-11-25 10:04:59 -0500
committerSteven <steven.vasilogianis@gmail.com>2021-11-25 10:07:09 -0500
commitb3c0f071d5cb4184fcc5b9e3cdee2d9afc3683f6 (patch)
treedfba57b2d4446b1869642e0877d4c99627cc5f7d
parent0acb0f1d0d96015be8a4c0e14501c71474b715d9 (diff)
arrange order of parts to match order used in documentation
-rw-r--r--README.md10
-rw-r--r--cubbies.scad2
2 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 1c1cc90..a50cfd6 100644
--- a/README.md
+++ b/README.md
@@ -81,11 +81,6 @@ pieces).
81 81
82: `side` — a side part whose dimensions will be `cubby_depth` x `cubby_height`. 82: `side` — a side part whose dimensions will be `cubby_depth` x `cubby_height`.
83 83
84: `both` — a `bottom` and a `side` laid next each other. (These may look like
85 two seperate models, but is only one model, and obnixious to work with in a
86 slicer. Generating them seperately will allow you to manipulate them
87 individually).
88
89: `female_tabs` — generates a shape consisting of the minimum amount of material 84: `female_tabs` — generates a shape consisting of the minimum amount of material
90 needed to test the dovetail joint fit. `cubby_depth` is respected as the 85 needed to test the dovetail joint fit. `cubby_depth` is respected as the
91 length that the tab holes (mortises) should run. (I have found that although 86 length that the tab holes (mortises) should run. (I have found that although
@@ -96,6 +91,11 @@ pieces).
96 91
97: `view_fit` — used as a debugging aid during development -- displays two sets 92: `view_fit` — used as a debugging aid during development -- displays two sets
98 of tops and bottoms posiitioned to inspect tab fit. 93 of tops and bottoms posiitioned to inspect tab fit.
94
95: `both` — a `bottom` and a `side` laid next each other. (These may look like
96 two seperate models, but is only one model, and obnixious to work with in a
97 slicer. Generating them seperately will allow you to manipulate them
98 individually).
99 99
100### Cubby Dimensions ### 100### Cubby Dimensions ###
101 101
diff --git a/cubbies.scad b/cubbies.scad
index 3fbb5aa..aa777c6 100644
--- a/cubbies.scad
+++ b/cubbies.scad
@@ -5,7 +5,7 @@ include <BOSL2/joiners.scad>;
5 5
6$fn=20; 6$fn=20;
7 7
8part="both"; // [both:Bottom + Side,bottom::Bottom Only,side:Side Only,view_fit:Debugging view to confirm tab fit,male_tabs:Tabs only from bottom,female_tabs:Holes only from side] 8part="both"; // [bottom::Bottom Only,side:Side Only,female_tabs:Holes only from side,male_tabs:Tabs only from bottom,view_fit:Debugging view to confirm tab fit,both:Bottom + Side]
9 9
10/* [Cubby dimensions] */ 10/* [Cubby dimensions] */
11cubby_width=40; 11cubby_width=40;