commit 588b11999fe5fc8476935289c741c38d0d15cea1 Author: mattmcw <matt@sixteenmillimeter.com> Date: Tue Mar 25 15:17:50 2025 -0400 Initial commit diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..8e4d20d --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "scad/common"] + path = scad/common + url = https://git.sixteenmillimeter.com/modules/common.git diff --git a/README.md b/README.md new file mode 100644 index 0000000..09a8ff2 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Bolex Matte Box + diff --git a/scad/bolex_matte_box.scad b/scad/bolex_matte_box.scad new file mode 100644 index 0000000..285575a --- /dev/null +++ b/scad/bolex_matte_box.scad @@ -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(); \ No newline at end of file diff --git a/scad/common b/scad/common new file mode 160000 index 0000000..e2eeb27 --- /dev/null +++ b/scad/common @@ -0,0 +1 @@ +Subproject commit e2eeb27f173d739a174c0d147bcb62a16859e2d9