separate data into *-data.scad for 3d models
[challenge-bot] / 3d-printables / wheel.scad
CommitLineData
bc02cd24 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
136c3fb0 7// use $fn = 20 while developing, 100 when about to print
8// 20 will make previews fast
9// 100 will make printing smooth
8464810c 10$fn = 100;
136c3fb0 11
3d90aff0 12include <wheel-data.scad>
defb83a5 13
14/*
8464810c 15wheel(wheel_radius,
16 wheel_width,
17 motor_shaft_radius,
18 motor_shaft_flat_width,
403f9f0c 19 wall_width,
20 tread_radius);
defb83a5 21*/
22
23wheel_solid(wheel_radius,
24 wheel_width,
25 motor_shaft_radius,
26 motor_shaft_flat_width,
27 wall_width,
28 tread_radius);