From 5ac383a0d172d9d7b2aabc3d94d53703b9691945 Mon Sep 17 00:00:00 2001 From: daniel watson Date: Fri, 19 Jan 2018 22:27:43 -0800 Subject: [PATCH] add hand hull to keep spool from falling off end of holder --- mk2-haribo-spool-holder.scad | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/mk2-haribo-spool-holder.scad b/mk2-haribo-spool-holder.scad index 2518ff5..0b8c55f 100644 --- a/mk2-haribo-spool-holder.scad +++ b/mk2-haribo-spool-holder.scad @@ -108,10 +108,29 @@ module forearm_hull() { linear_extrude(height = 120.5) { forearm_profile(); } } +module hand_profile() { + minkowski() { + polygon([[0, 0], + [14, 0], + [19.5, 20], + [7, 20]]); + circle(5); } } + +module hand_hull() { + hull() { + difference() { + forearm_hull(); + translate([-30, -30, -300 + 106]) { + cube(300); } } + translate([53, 135, 115.6]) { + linear_extrude(height = 5) { + hand_profile(); } } } } + shoulder_hull(); upper_arm_hull(); elbow_hull(); forearm_hull(); +hand_hull(); module original_forearm_profile() { %projection(true) { @@ -127,6 +146,11 @@ module original_spool_holder() { %translate([-315, 0, 0]) { import("Spool-holder.stl"); } } +module original_hand_profile() { + %projection(true) { + translate([-368, -135, -117]) { + import("Spool-holder.stl"); } } } + /* This file is part of 3d-printables. -- 2.30.2