made hinges more accurate

This commit is contained in:
tessaK9 2026-04-09 18:31:20 +02:00
commit e58609f4a3
4 changed files with 6 additions and 6 deletions

View file

@ -2,9 +2,9 @@ use <../base/hinge.scad>;
union(){
translate([7,0,0]) cube([5,47,6]);
hinge(15,0,0);
translate([0,10,0]) hinge(30);
translate([0,20,0]) hinge(45);
translate([0,30,0]) hinge(60);
translate([0,40,0]) hinge(90);
hinge(len_before = 10, 15);
translate([0,10,0]) hinge(len_before = 10, 30);
translate([0,20,0]) hinge(len_before = 10, 45);
translate([0,30,0]) hinge(len_before = 10, 60);
translate([0,40,0]) hinge(len_before = 10, 90);
}