Initial commit

This commit is contained in:
Matt McWilliams 2025-03-25 15:17:50 -04:00
commit 588b11999f
4 changed files with 19 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "scad/common"]
path = scad/common
url = https://git.sixteenmillimeter.com/modules/common.git

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# Bolex Matte Box

13
scad/bolex_matte_box.scad Normal file
View File

@ -0,0 +1,13 @@
use <./common/common.scad>;
RAIL_SPACING_HALF_IN = 30;
HALF_IN_RAIL_D = 13;
module bolex_matte_box () {
$fn = 100;
translate([RAIL_SPACING_HALF_IN / 2, 0, 0]) cylinder(r = R(HALF_IN_RAIL_D), h = 50, center = true);
translate([-RAIL_SPACING_HALF_IN / 2, 0, 0]) cylinder(r = R(HALF_IN_RAIL_D), h = 50, center = true);
}
bolex_matte_box();

1
scad/common Submodule

@ -0,0 +1 @@
Subproject commit e2eeb27f173d739a174c0d147bcb62a16859e2d9