speice.io/blog/2024-11-15-playing-with-fire/1-introduction/chaosGameWeighted.ts

43 lines
874 B
TypeScript
Raw Normal View History

2024-11-24 22:37:53 -05:00
// hidden-start
import { randomBiUnit } from "../src/randomBiUnit";
import { randomChoice } from "../src/randomChoice";
import { plot } from "./plot";
import { Transform } from "../src/transform";
2024-12-09 22:18:13 -05:00
const quality = 0.5;
const step = 1000;
2024-11-24 22:37:53 -05:00
// hidden-end
2024-12-08 22:50:46 -05:00
export type Props = {
width: number,
height: number,
transforms: [number, Transform][]
2024-12-01 21:57:10 -05:00
}
export function* chaosGameWeighted(
{ width, height, transforms }: Props
) {
let img =
new ImageData(width, height);
let [x, y] = [
randomBiUnit(),
randomBiUnit()
];
2024-11-24 22:37:53 -05:00
const pixels = width * height;
const iterations = quality * pixels;
for (let i = 0; i < iterations; i++) {
// highlight-start
const [_, xform] =
randomChoice(transforms);
// highlight-end
[x, y] = xform(x, y);
2024-11-24 22:37:53 -05:00
if (i > 20)
plot(x, y, img);
2024-11-24 22:37:53 -05:00
if (i % step === 0)
yield img;
}
2024-11-24 22:37:53 -05:00
yield img;
2024-11-24 22:37:53 -05:00
}