/ src / supports / bars.scad
bars.scad
1  module bars(stem_type, loft, height) {
2    translate([0,0,loft + height / 2]){
3      cube([2, 100, height], center = true);
4      cube([100, 2, height], center = true);
5    }
6  }