1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-09-09 22:51:16 +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

@@ -116,10 +116,10 @@ module MT3608_carrier_stl() { //! Generate the STL for an MT3608 carrier, two re
difference() {
hull() {
translate([offset, 0, height - eps / 2])
rounded_rectangle([width, pcb_width - 2, eps], 1);
rounded_rectangle([width, pcb_width - 2, eps], 1, true);
translate_z(eps / 2)
rounded_rectangle([width, pcb_width - 2, eps], 1);
rounded_rectangle([width, pcb_width - 2, eps], 1, true);
}
for(side = [-1, 1])
hull() {