speice.io/blog/2024-11-15-playing-with-fire/2-transforms/chaosGameFinal.ts

29 lines
844 B
TypeScript
Raw Normal View History

2024-11-30 17:35:42 -05:00
// hidden-start
import { randomBiUnit } from "../src/randomBiUnit";
import { randomChoice } from "../src/randomChoice";
import { plotBinary as plot } from "../src/plotBinary"
import {Transform} from "../src/transform";
const iterations = 500_000;
const step = 1000;
// hidden-end
export function* chaosGameFinal(width: number, height: number, transforms: [number, Transform][], final: Transform) {
let image = new ImageData(width, height);
let [x, y] = [randomBiUnit(), randomBiUnit()];
for (let i = 0; i < iterations; i++) {
const [_, transform] = randomChoice(transforms);
[x, y] = transform(x, y);
// highlight-start
[x, y] = final(x, y);
// highlight-end
if (i > 20)
plot(x, y, image);
if (i % step === 0)
yield image;
}
yield image;
}