1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-05 15:07:28 +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

@@ -20,7 +20,8 @@ include <../global_defs.scad>
use <../utils/fillet.scad>
module fillets() {
fillet(3, 25);
rotate(180)
fillet(3, 10);
}
fillets();

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.7 KiB

After

Width:  |  Height:  |  Size: 19 KiB

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);
}