/ src / stems / box_cherry.scad
box_cherry.scad
 1  include <../functions.scad>
 2  include <cherry.scad>
 3  
 4  module box_cherry_stem(depth, slop, throw) {
 5    difference(){
 6      // outside shape
 7      linear_extrude(height = depth) {
 8        offset(r=1){
 9          square(outer_box_cherry_stem(slop) - [2,2], center=true);
10        }
11      }
12  
13      // inside cross
14      inside_cherry_cross(slop);
15    }
16  }