Read time: 0.0 minutes (1 words)

part: spar

Design Notes

(None)

part Design File

prop/spar/spar.scad
 1//########################################
 2// spar.scad
 3// (c) 2021 - Roie R. Black
 4//****************************************
 5include <../prop_data.scad>
 6$fn = 64;
 7
 8
 9module spar() {
10  color(prop_spar_color)
11    union() {
12      cylinder(
13        r1=prop_spar_inner_radius,
14        r2=prop_spar_outer_radius,
15        h=prop_spar_length/2);
16      rotate([0,180,0])
17        cylinder(
18          r1=prop_spar_inner_radius,
19          r2=prop_spar_outer_radius,
20          h=prop_spar_length/2);
21    }
22}
23
24spar();