Read time: 0.0 minutes (1 words)
part: trailing_edge¶
Design Notes¶
(None)
part Design File¶
1//#####################################
2// te.scad = wing center section
3// (c) 2021 by Roie R. Black
4//=====================================
5include <../../wing_data.scad>
6use <MMlib/double_taper_spar.scad>
7
8s1 = spar_size;
9s2 = spar_size/2;
10
11
12module trailing_edge() {
13 double_taper_spar(tip_span,s1,s2,s1,s2);
14}
15
16//====================================
17// display this shape
18trailing_edge();
19
20