mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-12 09:44:16 +02:00
fix magic seed
This commit is contained in:
@@ -10,7 +10,7 @@ module 2_edge_wang_tiles(rows, columns, tile_width, mask, seed) {
|
|||||||
for(y = [0:rows])
|
for(y = [0:rows])
|
||||||
[
|
[
|
||||||
for(x = [0:columns])
|
for(x = [0:columns])
|
||||||
let(rs = rands(0, 1, 2, 10 + y * columns + x))
|
let(rs = rands(0, 1, 2, seed + y * columns + x))
|
||||||
[round(rs[0]), round(rs[1])]
|
[round(rs[0]), round(rs[1])]
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
Reference in New Issue
Block a user