14 lines
279 B
OpenSCAD
14 lines
279 B
OpenSCAD
tw=15; // toungue width
|
|
td=7; // toungue depth
|
|
rw=1.2; // rail width
|
|
sw=((tw - (rw * 3)) / 2); // slot width
|
|
|
|
difference() {
|
|
cube([tw, td, rw]);
|
|
|
|
union() {
|
|
translate([rw, rw, -0.1]) cube([sw, 1.6, 2]);
|
|
translate([tw - sw - rw, rw, -0.1]) cube([sw, 1.6, 2]);
|
|
}
|
|
}
|