Fixed fillet back to front
This commit is contained in:
parent
13c654a10e
commit
847dba544f
|
@ -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 |
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue