more designs

This commit is contained in:
2020-05-09 23:49:18 +02:00
parent cdf3c3138a
commit 7640be3fad
5 changed files with 755 additions and 0 deletions

14
seedling_box.scad Normal file
View File

@@ -0,0 +1,14 @@
small_distance = 0.01;
width = 250;
height = 210;
wall_thickness = 0.8 + small_distance;
wall_height = 20;
linear_extrude(wall_thickness)
square([width,height], center=true);
linear_extrude(wall_height)
difference(){
square([width,height], center=true);
square([width-2*wall_thickness,height-2*wall_thickness], center=true);
}