1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-16 04:13:57 +02:00

rounded_retangle() centre now defaults to false.

This commit is contained in:
Chris Palmer
2021-02-08 09:24:00 +00:00
parent 491d85156c
commit d75aff2ccd
8 changed files with 10 additions and 10 deletions

View File

@@ -46,7 +46,7 @@ module widget(thickness) {
module widget_stl() {
stl("widget")
union() {
rounded_rectangle([30, 30, 3], 2);
rounded_rectangle([30, 30, 3], 2, true);
render() insert_boss(insert, height, 2.2);
}

View File

@@ -56,7 +56,7 @@ module horiholes_stl(t = thickness) {
}
if(t == thickness)
translate([length / 2, 0])
rounded_rectangle([length + 2 * overlap_x, thickness + 2 * overlap_y, 2], 5);
rounded_rectangle([length + 2 * overlap_x, thickness + 2 * overlap_y, 2], 5, true);
}
module horiholes() {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 40 KiB