Read time: 0.0 minutes (1 words)

part: trailing_edge

Design Notes

(None)

part Design File

fuselage/fin/trailing_edge/trailing_edge.scad
 1//#####################################
 2// te.scad = wing center section
 3// (c) 2021 by Roie R. Black
 4//=====================================
 5include <../fin_data.scad>
 6use <MMlib/square_spar.scad>
 7
 8module trailing_edge() {
 9		square_spar(fin_te_length,spar_size);
10}
11
12//====================================
13// display this shape
14trailing_edge();
15
16