mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-31 18:22:08 +02:00
format
This commit is contained in:
@@ -12,11 +12,10 @@ module tiled_line_mobius(size, twist, line_diameter = 1) {
|
||||
[
|
||||
for(tile = tile_truchet(size))
|
||||
let(
|
||||
x = tile[0],
|
||||
y = tile[1],
|
||||
i = tile[2]
|
||||
x = tile.x,
|
||||
y = tile.y
|
||||
)
|
||||
i <= 1 ? [[x, y], [x + 1, y + 1]] : [[x + 1, y], [x, y + 1]]
|
||||
tile[2] <= 1 ? [[x, y], [x + 1, y + 1]] : [[x + 1, y], [x, y + 1]]
|
||||
],
|
||||
[
|
||||
for(i = [0:size[1] - 1])
|
||||
|
Reference in New Issue
Block a user