Add: Thermometer stand
This commit is contained in:
parent
92326eaf44
commit
edb339577c
17
thermometer_stand.scad
Normal file
17
thermometer_stand.scad
Normal 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
BIN
thermometer_stand.stl
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user