first commit of dogears

This commit is contained in:
tessaK9 2026-04-02 12:19:44 +02:00
commit 615277344f
10 changed files with 711 additions and 0 deletions

10
scad/test/hingetest.scad Normal file
View file

@ -0,0 +1,10 @@
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);
}