add second arm across body
[ozzloy@gmail.com/3d-printables] / crazyflie-2.0-housing.scad
CommitLineData
df8e764d 1/* GNU AGPLv3 (or later at your option)
2 see bottom for more license info */
3
4/* protective housing for crazyflie 2.0.
5
6 reinforce the arms so they do not snap.
7
8 keep the props up high so they do not get hairs from the ground
9 wrapped around the motor shaft.
10 */
11
df8e764d 12main_body_width_measured = 28.0;
13main_body_length_measured = 31.0;
df8e764d 14main_body_height_measured = 1.5;
15
16
e9c572e7 17arm_width_measured = 3.6;
18arm_length_measured = 79.0;
19arm_height_measured = main_body_height_measured;
df8e764d 20
21cube([main_body_width_measured,
22 main_body_length_measured,
6123c3ad 23 main_body_height_measured],
24 center = true);
9e3e6b08 25rotate(45){
26 cube([arm_width_measured,
27 arm_length_measured,
28 arm_height_measured],
29 center = true);}
b1297c9e
MC
30rotate(-45){
31 cube([arm_width_measured,
32 arm_length_measured,
33 arm_height_measured],
34 center = true);}
df8e764d 35
36/*
37 This file is part of 3d-printables.
38
39 3d-printables is free software: you can redistribute it and/or modify
40 it under the terms of the GNU Affero General Public License as published by
41 the Free Software Foundation, either version 3 of the License, or
42 (at your option) any later version.
43
44 3d-printables is distributed in the hope that it will be useful,
45 but WITHOUT ANY WARRANTY; without even the implied warranty of
46 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
47 GNU Affero General Public License for more details.
48
49 You should have received a copy of the GNU Affero General Public License
50 along with challenge-bot. If not, see <http://www.gnu.org/licenses/>.
51*/