Read time: 0.0 minutes (1 words)
part: wing_post¶
Design Notes¶
(None)
part Design File¶
1//#####################################
2// wing_post.scad
3// (c) 2021 by Roie R. Black
4//*************************************
5include <wing_post_data.scad>
6$fn=100;
7use <MMlib/rounded_post.scad>
8
9module wing_post() {
10 color(wing_post_color)
11 translate([0,0,0])
12 rounded_post(
13 z1=wing_post_height,
14 z2= wing_post_height-tube_height,
15 t = post_diameter
16 );
17}
18
19//---------------------------------------
20// debug display
21
22wing_post();
23
24
Component Data File(s)¶
1//#####################################
2// wing_post_data.scad
3// (c) 2021 by Roie R. Black
4//*************************************
5include <../fuselage_data.scad>
6include <colors.scad>
7include <../../materials.scad>
8
9wing_post_color = WOOD_Balsa;
10wing_post_height = wing_elevation + tube_height;