mirror of
https://github.com/bspeice/speice.io
synced 2024-12-22 16:48:10 -05:00
51 lines
1.0 KiB
TypeScript
51 lines
1.0 KiB
TypeScript
// hidden-start
|
|
import { randomBiUnit } from "../src/randomBiUnit";
|
|
import { randomChoice } from "../src/randomChoice";
|
|
import { plotBinary as plot } from "../src/plotBinary";
|
|
import { Transform } from "../src/transform";
|
|
import { Props as WeightedProps } from "../1-introduction/chaosGameWeighted";
|
|
|
|
const quality = 0.5;
|
|
const step = 1000;
|
|
// hidden-end
|
|
export type Props = WeightedProps & {
|
|
final: Transform,
|
|
}
|
|
|
|
export function* chaosGameFinal(
|
|
{
|
|
width,
|
|
height,
|
|
transforms,
|
|
final
|
|
}: Props
|
|
) {
|
|
let img =
|
|
new ImageData(width, height);
|
|
let [x, y] = [
|
|
randomBiUnit(),
|
|
randomBiUnit()
|
|
];
|
|
|
|
const pixels = width * height;
|
|
const iterations = quality * pixels;
|
|
for (let i = 0; i < iterations; i++) {
|
|
const [_, transform] =
|
|
randomChoice(transforms);
|
|
[x, y] = transform(x, y);
|
|
|
|
// highlight-start
|
|
const [finalX, finalY] = final(x, y);
|
|
// highlight-end
|
|
|
|
if (i > 20)
|
|
// highlight-start
|
|
plot(finalX, finalY, img);
|
|
// highlight-end
|
|
|
|
if (i % step === 0)
|
|
yield img;
|
|
}
|
|
|
|
yield img;
|
|
} |