From 588b11999fe5fc8476935289c741c38d0d15cea1 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Tue, 25 Mar 2025 15:17:50 -0400 Subject: [PATCH] Initial commit --- .gitmodules | 3 +++ README.md | 2 ++ scad/bolex_matte_box.scad | 13 +++++++++++++ scad/common | 1 + 4 files changed, 19 insertions(+) create mode 100644 .gitmodules create mode 100644 README.md create mode 100644 scad/bolex_matte_box.scad create mode 160000 scad/common 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