remove unused ring module
[ozzloy@gmail.com/3d-printables] / spin.scad
CommitLineData
818dd661 1/* GNU AGPLv3 (or later at your option)
2 see bottom for more license info */
3
4/* spin thing that erin likes */
5include<spin-data.scad>
6
dea6ab70 7object = "spin";
7f1519fb 8
dea6ab70 9if (object == "spin") {
10 spin(weight_radius,
11 weight_thickness,
dea6ab70 12 bearing_radius,
cc410ed6 13 bearing_thickness,
14 weight_lip_overhang,
15 bearing_lip_overhang,
16 wall,
17 arms); }
dea6ab70 18else if (object == "cap") {
19 cap(bearing_inner_radius,
20 bearing_cap_footprint_radius,
21 bearing_cover_radius,
22 bearing_thickness); }
818dd661 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*/