Generated models for top dampeners

This commit is contained in:
2025-08-14 12:48:48 +02:00
parent 97801f4d92
commit 29a42d563b
9 changed files with 14 additions and 53 deletions

View File

@@ -3,7 +3,7 @@ $fn = 32;
$space = 3;
$width = 15.5;
$length = $width;
$height = 0.4;
$height = 1;
$holes = $height*4;
$cut = $holes/2*-1;
$switchDistance = $width+ $space;
@@ -58,7 +58,7 @@ module switchColumn(){
}
}
module topDampener(){
module rightTopDampener(){
union(){
switchColumn();
translate([$switchDistance,0,0])
@@ -74,4 +74,15 @@ module topDampener(){
}
}
topDampener();
module leftTopDampener(){
rotate([0,180,0]){
rightTopDampener();
}
}
translate([10,0,0]){
rightTopDampener();
}
translate([-10,0,0]){
leftTopDampener();
}