Kallax organization models.

This commit is contained in:
2025-11-02 21:49:31 -06:00
parent 9e771b3125
commit aa7725adef
9 changed files with 868 additions and 0 deletions
@@ -0,0 +1,23 @@
include <./insert-box.scad>;
$fn=64;
dowelDiameter = 12.7; // 0.5 inch
module dowel() {
color("Sienna") rotate([0, 90, ])
cylinder(h=innerSide, d=dowelDiameter, center=true);
}
outerBox();
supportingFelt();
translate([feltThickness + boardThickness, 0, feltThickness + boardThickness])
union() {
// Everything within this union is referenced off of the inner box. The outer
// translate accounts for the felt and walls.
translate([innerSide/2, 0, innerSide - dowelDiameter*1.5]) // center dowels on X, raise Z
union() {
translate([0, kallaxDepth*0.25, 0]) dowel();
translate([0, kallaxDepth*0.75, 0]) dowel();
}
}