use full 608zz radius as radius for cover
[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
5f8325d2 7object = "spin_slices";
7f1519fb 8
5f8325d2 9if (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); }
dea6ab70 19else if (object == "cap") {
20 cap(bearing_inner_radius,
21 bearing_cap_footprint_radius,
22 bearing_cover_radius,
23 bearing_thickness); }
818dd661 24
25/*
26 This file is part of 3d-printables.
27
28 3d-printables is free software: you can redistribute it and/or modify
29 it under the terms of the GNU Affero General Public License as published by
30 the Free Software Foundation, either version 3 of the License, or
31 (at your option) any later version.
32
33 3d-printables is distributed in the hope that it will be useful,
34 but WITHOUT ANY WARRANTY; without even the implied warranty of
35 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
36 GNU Affero General Public License for more details.
37
38 You should have received a copy of the GNU Affero General Public License
39 along with challenge-bot. If not, see <http://www.gnu.org/licenses/>.
40*/