1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-20 06:11:41 +02:00

Added rounded_rectangles in the XZ and YZ planes.

This commit is contained in:
Martin Budden
2020-12-20 09:16:40 +00:00
parent 73d814d2fe
commit 14c6219733
2 changed files with 23 additions and 2 deletions

View File

@@ -25,6 +25,12 @@ module rounded_rectangles() {
translate([40, 0])
rounded_rectangle([30, 20, 10], 3);
translate([80, 0])
rounded_rectangle_xz([30, 20, 10], 3);
translate([120, 0])
rounded_rectangle_yz([30, 20, 10], 3);
}
rounded_rectangles();