Merge pull request #25 from Lenbok/lenbok-stem-chamfer

Add small chamfer at base of stem.
This commit is contained in:
Bob 2018-06-03 18:15:57 -04:00 committed by GitHub
commit f37f6340ce
1 changed files with 5 additions and 0 deletions

View File

@ -25,6 +25,11 @@ module cherry_stem(depth, has_brim) {
square($cherry_cross[0], center=true); square($cherry_cross[0], center=true);
square($cherry_cross[1], center=true); square($cherry_cross[1], center=true);
} }
// Guides to assist insertion and mitigate first layer squishing
for (i = $cherry_cross) hull() {
linear_extrude(height = 0.01, center = false) offset(delta = 0.4) square(i, center=true);
translate([0, 0, 0.5]) linear_extrude(height = 0.01, center = false) square(i, center=true);
}
} }
} }
} }