From 2de479d6917c76c487dba1e792c9c81ed7bb5aeb Mon Sep 17 00:00:00 2001 From: Martin Budden Date: Thu, 27 Feb 2020 10:44:00 +0000 Subject: [PATCH] Fixed incomplete webbing on side of kp_pillow_block. --- vitamins/kp_pillow_block.scad | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/vitamins/kp_pillow_block.scad b/vitamins/kp_pillow_block.scad index 8e41003..b394c07 100644 --- a/vitamins/kp_pillow_block.scad +++ b/vitamins/kp_pillow_block.scad @@ -72,13 +72,16 @@ module kp_pillow_block(type) { //! Draw the KP pillow block for(x = [- L / 2 + squareSizeX - fillet, L / 2 - squareSizeX + fillet - 2]) translate([x, 0, 0]) cube([2, H, A]); - stripLength = J - 2 * bolthole_radius; - stripThickness = 4; - translate([-stripLength / 2, 0, (H1 + stripThickness) / 2]) - cube([stripLength, H1, stripThickness]); translate([0 , H, 0]) tube(H0 / 2, b / 2, A, center = false); } + stripThickness = 4; + translate([-H0 / 2, 0, -stripThickness / 2]) + linear_extrude(stripThickness) difference() { + square([H0, H]); + translate([H0 / 2, H]) + circle(b / 2); + } } not_on_bom() no_explode()