separate data into *-data.scad for 3d models
[challenge-bot] / 3d-printables / wheel.scad
1 // challenge-bot
2 // GNU AGPLv3 (or later at your option)
3 // project available at these locations:
4 // https://gitorious.org/ozzloy/challenge-bot
5 // https://github.com/waynegramlich/challenge-bot
6
7 // use $fn = 20 while developing, 100 when about to print
8 // 20 will make previews fast
9 // 100 will make printing smooth
10 $fn = 100;
11
12 include <wheel-data.scad>
13
14 /*
15 wheel(wheel_radius,
16 wheel_width,
17 motor_shaft_radius,
18 motor_shaft_flat_width,
19 wall_width,
20 tread_radius);
21 */
22
23 wheel_solid(wheel_radius,
24 wheel_width,
25 motor_shaft_radius,
26 motor_shaft_flat_width,
27 wall_width,
28 tread_radius);