1
0
mirror of https://github.com/nophead/Mendel90.git synced 2025-08-21 20:35:28 +02:00

Reverted rounded_square change.

This commit is contained in:
Chris Palmer
2016-01-08 21:28:33 +00:00
parent 154c3a56f9
commit 5c8bed54cd

View File

@@ -82,7 +82,7 @@ module right_triangle(width, height, h, center = true) {
module rounded_square(w, h, r) module rounded_square(w, h, r)
{ {
hull() { union() {
square([w - 2 * r, h], center = true); square([w - 2 * r, h], center = true);
square([w, h - 2 * r], center = true); square([w, h - 2 * r], center = true);
for(x = [-w/2 + r, w/2 - r]) for(x = [-w/2 + r, w/2 - r])