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:
839084a
)
toolbox-inserts: wip overall
author
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Mon, 21 Apr 2025 10:23:00 +0000
(11:23 +0100)
committer
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Mon, 21 Apr 2025 10:23:00 +0000
(11:23 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
toolbox-inserts.scad
patch
|
blob
|
history
diff --git
a/toolbox-inserts.scad
b/toolbox-inserts.scad
index fce72773680ae41e28606672dba86f35e20c7f93..465f9ce8fa7b3b1a2b1f361e1f464b163272b9c5 100644
(file)
--- a/
toolbox-inserts.scad
+++ b/
toolbox-inserts.scad
@@
-10,6
+10,7
@@
box_edge_z_hindent = 0.5;
box_edge_width = 10;
below_plane_z = 4.5;
+fixing_pitch = 10;
well_surround_wall = 2.5;
well_stiffening_height = 5;
@@
-127,3
+128,13
@@
module BoxBottomModel() { ////toplevel
BoxCavityModel();
}
}
+
+module OdAt(x,y) {
+ translate(fixing_pitch * [x,y,0])
+ children(0);
+}
+
+module OverallDemo() { ////toplevel
+ color("grey") BoxBottomModel();
+ color("red") OdAt(-5,-5) DriverHandleHolder();
+}