From: Clinton Ebadi Date: Tue, 1 Jan 2019 23:39:24 +0000 (-0500) Subject: etc: simple toh press X-Git-Url: http://git.hcoop.net/clinton/3d-models.git/commitdiff_plain/ad6083f6528edac3b5589c0d3d81f8116ccdcdd3?hp=56f7db3ce7bbce81166c813f9ed319e7250901c8 etc: simple toh press little toh press for making incense trails --- diff --git a/etc/toh.scad b/etc/toh.scad new file mode 100644 index 0000000..1ece968 --- /dev/null +++ b/etc/toh.scad @@ -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]);