You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
848 B
26 lines
848 B
/////////////////////////////////////////////////////////////////////////////////
|
|
// Housing box for UppSense first tries.
|
|
//
|
|
// Author: Maximilian Stiefel
|
|
// Last modification: 26.04.3017
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
use <open_box.scad>
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
// Vars
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
length = 50;
|
|
width = 80;
|
|
height = 45;
|
|
thickness = 5;
|
|
allowance = 1;
|
|
lid_depth = 5;
|
|
|
|
difference(){
|
|
// Using my open box module for creating a simple box
|
|
open_box(length, width, height, thickness, allowance);
|
|
// Creating a depening for the lid
|
|
translate([0, 0, height])
|
|
cube([length + 2*allowance + 2*thickness, width + 2*allowance + 2*thickness, lid_depth]);
|
|
}
|
|
|