Read time: 0.0 minutes (1 words)

part: motor_stick

Design Notes

(None)

part Design File

fuselage/motor_stick/motor_stick.scad
 1//#####################################
 2// motor-stick.scad
 3// (c) 2021 - Roie R. Black
 4//*************************************
 5include <colors.scad>
 6include <motor_stick_data.scad>
 7
 8
 9module motor_stick() {
10  color(WOOD_Balsa)
11	  linear_extrude(
12	      height = ms_thickness,
13	      center=false,
14	      convexity=10
15	  )
16        polygon(ms_points);
17}
18
19//-------------------------------------
20// debug display
21
22motor_stick();

Component Data File(s)

fuselage/motor_stick/motor_stick_data.scad
 1//#####################################
 2// motor-stick-data.scad
 3// (c) 2021 by Roie R. Black
 4//*************************************
 5
 6ms_thickness = 1/8;
 7motor_stick_rear_height = 0.1875;
 8ms_length = 10;
 9
10ms_points = [
11	[0,0],
12	[9.625,0],
13	[9.8125,-0.1875],
14	[10.0,0],
15	[10.0,0.1875],
16	[6.625,0.25],
17	[1.625,0.25],
18	[0.10825,0.1875],
19	[0,0]
20];