calculate spinner shell layer by layer
[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";
8
9 if (object == "spin") {
10 spin(weight_radius,
11 weight_thickness,
12 bearing_radius,
13 bearing_thickness,
14 weight_lip_overhang,
15 bearing_lip_overhang,
16 wall,
17 arms); }
18 else if (object == "cap") {
19 cap(bearing_inner_radius,
20 bearing_cap_footprint_radius,
21 bearing_cover_radius,
22 bearing_thickness); }
23
24 /*
25 This file is part of 3d-printables.
26
27 3d-printables is free software: you can redistribute it and/or modify
28 it under the terms of the GNU Affero General Public License as published by
29 the Free Software Foundation, either version 3 of the License, or
30 (at your option) any later version.
31
32 3d-printables is distributed in the hope that it will be useful,
33 but WITHOUT ANY WARRANTY; without even the implied warranty of
34 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 GNU Affero General Public License for more details.
36
37 You should have received a copy of the GNU Affero General Public License
38 along with challenge-bot. If not, see <http://www.gnu.org/licenses/>.
39 */