1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-22 14:23:23 +02:00
This commit is contained in:
Justin Lin
2020-02-19 14:04:48 +08:00
parent 5d2fc04705
commit 7a52bf3b00
2 changed files with 3 additions and 5 deletions

View File

@@ -20,8 +20,7 @@ module sf_bend(levels, radius, thickness, angle, invert = false) {
[
for(row = surface[0])
[
for(p = row)
tf_bend(size, p, radius + offset_z, angle)
for(p = row) tf_bend(size, p, radius + offset_z, angle)
]
],
[

View File

@@ -14,8 +14,7 @@ module sf_square(levels, thickness, invert = false) {
[
for(row = surface[0])
[
for(p = row)
p + [0, 0, offset_z]
for(p = row) p + [0, 0, offset_z]
]
],
surface[1]