Unfinished changes.
This commit is contained in:
19
models/glovebox_base/base_gasket.scad
Normal file
19
models/glovebox_base/base_gasket.scad
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
include <../../config.scad>;
|
||||
|
||||
module base_gasket() {
|
||||
color("black")
|
||||
difference() {
|
||||
// Body
|
||||
cube([R_EXTERNAL[0], R_EXTERNAL[1], T_GASKET_RUBBER], center = true);
|
||||
// Workspace hole
|
||||
cube([R_EXTERNAL[0] - W_DOOR_GASKET * 2, R_EXTERNAL[1] - W_DOOR_GASKET * 2, T_GASKET_RUBBER], center = true);
|
||||
// Fastener holes
|
||||
}
|
||||
// Shopping
|
||||
echo(str("EDPM rubber: Base Gasket ", R_EXTERNAL[0], "mm x ", R_EXTERNAL[1], "mm - x1"));
|
||||
}
|
||||
|
||||
$fn = 50;
|
||||
// test output
|
||||
base_gasket();
|
||||
BIN
models/glovebox_base/base_gasket.stl
Normal file
BIN
models/glovebox_base/base_gasket.stl
Normal file
Binary file not shown.
17
models/glovebox_base/base_plate.scad
Normal file
17
models/glovebox_base/base_plate.scad
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
include <../../config.scad>;
|
||||
|
||||
module base_plate() {
|
||||
color("darkgrey")
|
||||
difference() {
|
||||
// Body
|
||||
cube(R_BASE_PLATE, center = true);
|
||||
// Fastener holes
|
||||
}
|
||||
// Shopping
|
||||
echo(str("Aluminium sheet: Base plate ", R_BASE_PLATE[0], "mm x ", R_BASE_PLATE[1], "mm x ", R_BASE_PLATE[2], "mm - x1"));
|
||||
}
|
||||
|
||||
$fn = 50;
|
||||
// test output
|
||||
base_plate();
|
||||
Reference in New Issue
Block a user