Add: Thermometer stand

This commit is contained in:
Fabrice Mouhartem 2024-07-19 19:09:02 +02:00
parent 92326eaf44
commit edb339577c
2 changed files with 17 additions and 0 deletions

17
thermometer_stand.scad Normal file
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);
}

BIN
thermometer_stand.stl Normal file

Binary file not shown.