Unfinished changes.

This commit is contained in:
2025-06-18 16:17:46 +01:00
parent 9e459446c9
commit 6448371d93
7 changed files with 130 additions and 35 deletions

View 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();

Binary file not shown.

View 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();