1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-19 22:07:31 +02:00

Fixed fillet back to front

This commit is contained in:
Chris Palmer
2019-07-28 22:08:21 +01:00
parent 13c654a10e
commit 847dba544f
3 changed files with 4 additions and 2 deletions

View File

@@ -28,5 +28,6 @@ module fillet(r, h, center = false) //! Fillet with specified radius and height
translate([-eps, -eps, 0])
square(r + eps);
circle(r + eps);
translate([r, r])
circle(r + eps);
}