/ src / stem_supports.scad
stem_supports.scad
 1  include <stem_supports/brim.scad>
 2  include <stem_supports/tines.scad>
 3  
 4  
 5  //whole stem, alps or cherry, trimmed to fit
 6  module stem_support(support_type, stem_type, stem_support_height, slop){
 7      if (support_type == "brim") {
 8        brim_support(stem_type, stem_support_height, slop);
 9      } else if (support_type == "tines") {
10        tines_support(stem_type, stem_support_height, slop);
11      } else if (support_type == "disable") {
12        children();
13      } else {
14        echo("Warning: unsupported $stem_support_type");
15      }
16  }