rounded_cherry.scad
1 include <../functions.scad> 2 include <cherry.scad> 3 4 module rounded_cherry_stem(depth, slop, throw) { 5 difference(){ 6 cylinder(d=$rounded_cherry_stem_d, h=depth); 7 8 // inside cross 9 // translation purely for aesthetic purposes, to get rid of that awful lattice 10 inside_cherry_cross(slop); 11 } 12 }