Initial commit
This commit is contained in:
commit
588b11999f
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "scad/common"]
|
||||||
|
path = scad/common
|
||||||
|
url = https://git.sixteenmillimeter.com/modules/common.git
|
|
@ -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();
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit e2eeb27f173d739a174c0d147bcb62a16859e2d9
|
Loading…
Reference in New Issue