Begin designing a carriage and stand for the intval.

This commit is contained in:
mmcw-dev 2017-12-10 16:11:14 -05:00
parent 22d497b464
commit 2a2d71ec73
1 changed files with 10 additions and 0 deletions

10
hardware/carriage.scad Normal file
View File

@ -0,0 +1,10 @@
THREADED_R = 12 / 2;
ROD_R = 13 / 2;
module threaded_rod () {
$fn = 60;
length = 30 * 10;
cylinder(r = THREADED_R, h = length, center = true);
}
translate([45, 0, 0]) rotate([90, 0, 0]) threaded_rod();