2024-11-24 22:37:53 -05:00
|
|
|
import {useEffect, useState} from "react";
|
|
|
|
import Canvas from "../src/Canvas";
|
|
|
|
import { Params, chaosGameWeighted } from "./chaosGameWeighted";
|
|
|
|
import TeX from '@matejmazur/react-katex';
|
|
|
|
|
2024-11-29 19:25:29 -05:00
|
|
|
import styles from "../src/css/styles.module.css"
|
2024-11-24 22:37:53 -05:00
|
|
|
|
2024-11-29 19:25:29 -05:00
|
|
|
type Transform = (x: number, y: number) => [number, number];
|
2024-11-24 22:37:53 -05:00
|
|
|
|
|
|
|
export default function GasketWeighted() {
|
|
|
|
const image = new ImageData(600, 600);
|
|
|
|
const iterations = 100_000;
|
|
|
|
const step = 1000;
|
|
|
|
|
|
|
|
const [f0Weight, setF0Weight] = useState<number>(1);
|
|
|
|
const [f1Weight, setF1Weight] = useState<number>(1);
|
|
|
|
const [f2Weight, setF2Weight] = useState<number>(1);
|
|
|
|
|
|
|
|
const f0: Transform = (x, y) => [x / 2, y / 2];
|
|
|
|
const f1: Transform = (x, y) => [(x + 1) / 2, y / 2];
|
|
|
|
const f2: Transform = (x, y) => [x / 2, (y + 1) / 2];
|
|
|
|
|
|
|
|
const [game, setGame] = useState<Generator<ImageData>>(null);
|
|
|
|
useEffect(() => {
|
|
|
|
const params: Params = {
|
|
|
|
transforms: [
|
|
|
|
[f0Weight, f0],
|
|
|
|
[f1Weight, f1],
|
|
|
|
[f2Weight, f2]
|
|
|
|
],
|
|
|
|
image,
|
|
|
|
iterations,
|
|
|
|
step
|
|
|
|
}
|
|
|
|
setGame(chaosGameWeighted(params))
|
|
|
|
}, [f0Weight, f1Weight, f2Weight]);
|
|
|
|
|
2024-11-29 19:25:29 -05:00
|
|
|
const weightInput = (title, weight, setWeight) => (
|
|
|
|
<>
|
|
|
|
<div className={styles.inputDiv}>
|
|
|
|
<p><TeX>{title}</TeX> weight:<span style={{float: 'right'}}>{weight}</span></p>
|
|
|
|
<input type={'range'} min={0} max={1} step={.01} style={{width: '100%'}} value={weight}
|
|
|
|
onInput={e => setWeight(Number(e.currentTarget.value))}/>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
|
2024-11-24 22:37:53 -05:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Canvas width={image.width} height={image.height} painter={game}/>
|
|
|
|
<div style={{paddingTop: '1em', display: 'grid', gridTemplateColumns: 'auto auto auto'}}>
|
2024-11-29 19:25:29 -05:00
|
|
|
{weightInput("F_0", f0Weight, setF0Weight)}
|
|
|
|
{weightInput("F_1", f1Weight, setF1Weight)}
|
|
|
|
{weightInput("F_2", f2Weight, setF2Weight)}
|
2024-11-24 22:37:53 -05:00
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|