start on donut version of spinner
[ozzloy@gmail.com/3d-printables] / spin.scad
1 /* GNU AGPLv3 (or later at your option)
2 see bottom for more license info */
3
4 /* spin thing that erin likes */
5 include<spin-data.scad>
6
7 object = "spin_slices";
8
9 if (object == "spin_slices") {
10 spin_slices(weight_radius,
11 weight_thickness,
12 bearing_radius,
13 bearing_thickness,
14 weight_lip_overhang,
15 bearing_lip_overhang,
16 wall,
17 arms,
18 layer_height); }
19 else if (object == "spin_donut") {
20 spin_donut(weight_radius,
21 weight_thickness,
22 bearing_radius,
23 bearing_thickness,
24 weight_lip_overhang,
25 bearing_lip_overhang,
26 wall,
27 arms); }
28 else if (object == "cap") {
29 cap(bearing_inner_radius,
30 bearing_cap_footprint_radius,
31 bearing_cover_radius,
32 bearing_thickness); }
33
34 /*
35 This file is part of 3d-printables.
36
37 3d-printables is free software: you can redistribute it and/or modify
38 it under the terms of the GNU Affero General Public License as published by
39 the Free Software Foundation, either version 3 of the License, or
40 (at your option) any later version.
41
42 3d-printables is distributed in the hope that it will be useful,
43 but WITHOUT ANY WARRANTY; without even the implied warranty of
44 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
45 GNU Affero General Public License for more details.
46
47 You should have received a copy of the GNU Affero General Public License
48 along with challenge-bot. If not, see <http://www.gnu.org/licenses/>.
49 */