Read time: 0.0 minutes (1 words)

part: spar

Design Notes

(None)

part Design File

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