add layer_height parameter
[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 layer_height); }
19 else if (object == "cap") {
20 cap(bearing_inner_radius,
21 bearing_cap_footprint_radius,
22 bearing_cover_radius,
23 bearing_thickness); }
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 */