Created dampener model

This commit is contained in:
2025-06-12 20:55:51 +02:00
parent 89c62d58e0
commit d14284b56b
5 changed files with 23 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,23 @@
$fn = 32;
$width = 15.2;
$length = $width;
$height = 0.4;
module pin(){
cylinder(h=$height+1, r=1, center=true);
}
difference(){
cube([$width,$length, $height], center=true);
cylinder(h=$height+1, r=2.522, center=true);
translate([0,5.9,0])
pin();
translate([5,3.8,0])
pin();
translate([-5,3.8,0])
pin();
translate([-5,-5.15,0])
pin();
translate([5,-5.15,0])
pin();
}