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

@@ -4,7 +4,13 @@ use <../common/c_channel_beam.scad>;
module door_support_beam(length) {
color("darkgrey") c_channel_beam(length, W_DOOR_SUPPORT_BEAM, D_DOOR_SUPPORT_BEAM, T_DOOR_SUPPORT_BEAM, true);
color("darkgrey") {
// c_channel_beam(length, W_DOOR_SUPPORT_BEAM, D_DOOR_SUPPORT_BEAM, T_DOOR_SUPPORT_BEAM, true);
translate([0, 0, -length / 2]) union() {
cube([W_DOOR_SUPPORT_BEAM, T_DOOR_SUPPORT_BEAM, length], center = false);
cube([T_DOOR_SUPPORT_BEAM, D_DOOR_SUPPORT_BEAM, length], center = false);
}
}
// Shopping
echo(str("Rectangular Aluminium channel beam: Rectangular Aluminium channel beam ", length, "mm x ", W_DOOR_SUPPORT_BEAM, "mm x ", D_DOOR_SUPPORT_BEAM, "mm x ", T_DOOR_SUPPORT_BEAM, "mm - x1"));
}