From d8418529f25ec1b71459ffc693110ab2cca7136b Mon Sep 17 00:00:00 2001 From: daniel watson Date: Mon, 14 Nov 2016 14:51:13 -0800 Subject: [PATCH] add initial crude motor --- crazyflie-2.0-housing.scad | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/crazyflie-2.0-housing.scad b/crazyflie-2.0-housing.scad index bd34c6d..a23c55d 100644 --- a/crazyflie-2.0-housing.scad +++ b/crazyflie-2.0-housing.scad @@ -17,6 +17,10 @@ arm_width_measured = 3.6; arm_length_measured = 79.0; arm_height_measured = main_body_height_measured; +motor_diameter_measured = 7; +motor_height_measured = 17; +motor_radius_measured = motor_diameter_measured / 2; + cube([main_body_width_measured, main_body_length_measured, main_body_height_measured], @@ -31,6 +35,13 @@ rotate(-45){ arm_length_measured, arm_height_measured], center = true);} +// TODO: move motor out by motor_radius amount +// TODO: move motor up to match physical placement more accurately +rotate(45) { + translate([arm_length_measured / 2, 0, 0]){ + cylinder(h = motor_height_measured, + r = motor_radius_measured, + center = true); } } /* This file is part of 3d-printables. -- 2.30.2