etc: simple toh press
authorClinton Ebadi <clinton@unknownlamer.org>
Tue, 1 Jan 2019 23:39:24 +0000 (18:39 -0500)
committerClinton Ebadi <clinton@unknownlamer.org>
Tue, 1 Jan 2019 23:39:24 +0000 (18:39 -0500)
little toh press for making incense trails

etc/toh.scad [new file with mode: 0644]

diff --git a/etc/toh.scad b/etc/toh.scad
new file mode 100644 (file)
index 0000000..1ece968
--- /dev/null
@@ -0,0 +1,14 @@
+// Simple Toh press for incense trails
+// 31mm long, 12mm wide
+
+leg_length   = 31;
+leg_width    = 12;
+leg_depth    = 5;
+leg_spacing  = 10;
+handle_depth = 10;
+
+cube([leg_width, leg_length, leg_depth]);
+
+translate ([leg_spacing + leg_width,0,0]) cube([leg_width, leg_length, leg_depth]);
+
+translate ([0, leg_length - leg_width, 0]) cube ([leg_spacing + leg_width * 2, leg_width, leg_depth + handle_depth]);