chiark
/
gitweb
/
~ianmdlvl
/
reprap-play.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca3d48e
)
knifeblock: add frontbackslop
author
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Tue, 30 Dec 2014 22:20:43 +0000
(22:20 +0000)
committer
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Tue, 30 Dec 2014 22:20:43 +0000
(22:20 +0000)
knifeblock.scad
patch
|
blob
|
history
diff --git
a/knifeblock.scad
b/knifeblock.scad
index 76001c75acc56696c318b454d38c6bf569fe317b..686644a425f86b6b90f603b4dbfb96cb3a328ef0 100644
(file)
--- a/
knifeblock.scad
+++ b/
knifeblock.scad
@@
-15,6
+15,12
@@
front = 5;
back = 5;
height = 50;
+frontbackslop = 0.5;
+
+screwbackdepth = 16;
+screwdia = 3.6;
+screwcsinkdia = 8.7;
+
// computed
totaldepth = front + maxhandledepth + back;
@@
-44,8
+50,12
@@
module DoKnife(k){
}
module DoKnives(){
- for (k=[0:nknives-1])
- DoKnife(k);
+ for (yshift=[-1,1]) {
+ translate([0, yshift * frontbackslop, 0])
+ for (k=[0:nknives-1]) {
+ DoKnife(k);
+ }
+ }
}
module Block(){