1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-23 15:43:39 +02:00

Fixed some paths that used NopSCADlib instead of ..

This commit is contained in:
Chris Palmer
2021-01-23 21:15:00 +00:00
parent e41366e20c
commit c9e9942070
2 changed files with 3 additions and 4 deletions

View File

@@ -21,7 +21,7 @@
//! Draw a 3D right triangle with rounded edges. Intended to be embedded in other parts. Can be optionally offset by the filleted amount.
//
include <../utils/core/core.scad>
include <NopSCADlib/utils/core/rounded_rectangle.scad>
include <..//utils/core/rounded_rectangle.scad>
module rounded_right_triangle(x, y, z, fillet, center = true, offset = false) { //! Draw a 3D right triangle with rounded edges.
fillet = max(fillet, eps);
@@ -43,4 +43,3 @@ module rounded_right_triangle(x, y, z, fillet, center = true, offset = false) {
rounded_rectangle([size.z, 2 * fillet, eps], fillet - eps, center = false, xy_center = false);
}
}