create open source hardware logo in openscad
[challenge-bot] / 3d-printables / open-source-hardware-logo.scad
1 /*
2 challenge-bot
3 project available here:
4 https://challenge-bot.com/
5
6 Copyright (C) 2016 Daniel Watson
7 See the end of the file for license conditions.
8 tl;dr GNU AGPLv3 (or later at your option)
9 */
10
11 /*
12 open source hardware logo use
13 this file draws open source hardware logo using data from
14 open-source-hardware-logo-data.scad
15 */
16
17 /* deck-data.scad gives deck_depth */
18 include <open-source-hardware-logo-data.scad>
19
20 open_source_hardware_logo(open_source_hardware_logo_radius,
21 open_source_hardware_logo_depth);
22
23 /*
24 This file is part of challenge-bot.
25
26 Challenge-bot is free software: you can redistribute it and/or modify
27 it under the terms of the GNU Affero General Public License as published by
28 the Free Software Foundation, either version 3 of the License, or
29 (at your option) any later version.
30
31 GNU Affero Emacs is distributed in the hope that it will be useful,
32 but WITHOUT ANY WARRANTY; without even the implied warranty of
33 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 GNU Affero General Public License for more details.
35
36 You should have received a copy of the GNU Affero General Public License
37 along with challenge-bot. If not, see <http://www.gnu.org/licenses/>.
38 */