Reorganization into folders

This commit is contained in:
2024-07-28 09:48:05 +02:00
parent 92678aa1ec
commit ffc270d411
17 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,17 @@
use <MCAD/boxes.scad>
$fn = 64;
// base
module base()
{
size = [ 50, 30, 10 ];
roundedBox(size, radius = 3, center = true);
translate([ 0, 0, -2.5 ]) roundedBox([ 50, 30, 5 ], radius = 3, sidesonly = true, center = true);
}
difference()
{
base();
translate([ 0, 6, 3 ]) rotate([ 10, 0, 0 ]) cube([ 30, 8, 10 ], center = true);
}

Binary file not shown.