Skip to content

Commit

Permalink
fixed notch and thickened
Browse files Browse the repository at this point in the history
  • Loading branch information
charely6 committed Nov 18, 2023
1 parent 7bc8844 commit 3d86428
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions slatWallHook.scad
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
widthOfHook = 20;
thicknessOfHook=3;
depthOfHook = 10;
lengthOfBar =140;
lengthOfBar =160;
numberOfHoles = 3;
difference()
{
Expand All @@ -11,23 +11,23 @@ cube([thicknessOfHook, 16, widthOfHook], center=true);
translate([depthOfHook/2,8-thicknessOfHook/2,0])
cube([depthOfHook, thicknessOfHook, widthOfHook],center=true);

translate([depthOfHook+thicknessOfHook,lengthOfBar/2+16/2-thicknessOfHook,0])
cube([thicknessOfHook*3, lengthOfBar, widthOfHook], center=true);
translate([depthOfHook+thicknessOfHook*1.25,lengthOfBar/2+16/2-thicknessOfHook,0])
cube([thicknessOfHook*3.5, lengthOfBar, widthOfHook], center=true);
}
for(i=[0:numberOfHoles-1]){
translate([depthOfHook+thicknessOfHook,lengthOfBar-i*12-thicknessOfHook,0])
hole();
}
translate ([depthOfHook/2+7, 18+54+12,0])
cube ([7,50, widthOfHook],center =true ) ;
translate ([depthOfHook/2+6, 18+54+12,0])
cube ([7,50, widthOfHook*1.2],center =true ) ;
}


module hole(){
rotate([0,90,0])
color("red")
union(){
cylinder(h=thicknessOfHook*3, d=5, center=true);
cylinder(h=thicknessOfHook*4, d=5, center=true);
translate([0,0,-thicknessOfHook])
#cylinder(h=thicknessOfHook, d1=10,d2=5,center=true);

Expand Down

0 comments on commit 3d86428

Please sign in to comment.