Read time: 0.0 minutes (1 words)

part: stab_post

Design Notes

(None)

part Design File

fuselage/stab_post/stab_post.scad
 1//#####################################
 2// stab_post.scad
 3// (c) 2021 by Roie R. Black
 4//*************************************
 5include <stab_post_data.scad>
 6$fn=100;
 7use <MMlib/rounded_post.scad>
 8
 9module stab_post() {
10  color(stab_post_color)
11    translate([0,0,0])
12      rounded_post(
13        z1=stab_post_height,
14        z2= stab_post_height-tube_height,
15        t = post_diameter
16      );
17}
18
19//---------------------------------------
20// debug display
21
22stab_post();
23
24

Component Data File(s)

fuselage/stab_post/stab_post_data.scad
 1//#####################################
 2// stab_post_data.scad
 3// (c) 2021 by Roie R. Black
 4//*************************************
 5include <../fuselage_data.scad>
 6include <../materials.scad>
 7include <colors.scad>
 8
 9
10stab_post_color = WOOD_Balsa;
11stab_post_height = 0.5 + tube_height;