use spokes instead of square for wheel
[challenge-bot] / 3d-printables / deck.scad
CommitLineData
25cd00a6 1/*
2 Copyright (C) 2015 Daniel Watson
3 See the end of the file for license conditions.
4*/
201687b6 5// challenge-bot
6// GNU AGPLv3 (or later at your option)
25cd00a6 7// project available here:
8// https://challenge-bot.com/
201687b6 9
3d90aff0 10include <deck-data.scad>
201687b6 11
12deck_2d(deck_width,
13 deck_length,
14 deck_pitch,
15 deck_grid_hole,
765e35b6 16 deck_hole_type,
3d90aff0 17 center = deck_centered);
25cd00a6 18
19/*
20 This file is part of challenge-bot.
21
22 Challenge-bot is free software: you can redistribute it and/or modify
23 it under the terms of the GNU Affero General Public License as published by
24 the Free Software Foundation, either version 3 of the License, or
25 (at your option) any later version.
26
27 GNU Affero Emacs is distributed in the hope that it will be useful,
28 but WITHOUT ANY WARRANTY; without even the implied warranty of
29 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 GNU Affero General Public License for more details.
31
32 You should have received a copy of the GNU Affero General Public License
33 along with challenge-bot. If not, see <http://www.gnu.org/licenses/>.
34*/