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