separate data into *-data.scad for 3d models
[challenge-bot] / 3d-printables / wire-jig.scad
CommitLineData
8b3d6ed0 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
3d90aff0 7include <wire-jig-data.scad>
8b3d6ed0 8
3d90aff0 9for (ii = [0:len(wire_lengths) - 1]) {
180a0f6f 10 translate([ wire_channel_width * ii, 0, 0]) {
3d90aff0 11 wire_channel_groove(wire_channel_width,
12 wire_channel_height,
13 wire_radius,
14 wire_lengths[ii]); } }