speice.io/blog/2024-11-15-playing-with-fire/3-log-density/FlameHistogram.tsx

25 lines
715 B
TypeScript
Raw Normal View History

import React, { useContext, useEffect } from "react";
import { xformFinal as final, xforms as transforms } from "../src/params";
import { PainterContext } from "../src/Canvas";
import { chaosGameHistogram } from "./chaosGameHistogram";
2024-12-01 15:16:30 -05:00
2024-12-01 21:57:10 -05:00
type Props = {
paint: (width: number, height: number, histogram: number[]) => ImageData;
children?: React.ReactElement;
}
export default function FlameHistogram({ paint, children }: Props) {
const { width, height, setPainter } = useContext(PainterContext);
useEffect(() => {
const gameParams = {
width,
height,
transforms,
final,
paint
};
setPainter(chaosGameHistogram(gameParams));
}, [width, height]);
return children;
2024-12-01 15:16:30 -05:00
}