mirror of
https://github.com/bspeice/speice.io
synced 2024-12-23 00:58:09 -05:00
25 lines
599 B
JavaScript
25 lines
599 B
JavaScript
// Hint: try increasing the iteration count
|
|
const iterations = 10000;
|
|
|
|
// Hint: negating `x` and `y` creates some interesting images
|
|
const functions = [
|
|
(x, y) => [x / 2, y / 2],
|
|
(x, y) => [(x + 1) / 2, y / 2],
|
|
(x, y) => [x / 2, (y + 1) / 2]
|
|
]
|
|
|
|
function chaosGame(image) {
|
|
var [x, y] = [randomBiUnit(), randomBiUnit()];
|
|
|
|
for (var count = 0; count < iterations; count++) {
|
|
const i = randomInteger(0, functions.length);
|
|
[x, y] = functions[i](x, y);
|
|
|
|
if (count > 20) {
|
|
plot(x, y, image);
|
|
}
|
|
}
|
|
}
|
|
|
|
render(<Gasket renderFn={chaosGame}/>)
|