speice.io/posts/2023/06/flam3/2c-final.ts

53 lines
874 B
TypeScript
Raw Normal View History

2023-07-01 00:38:15 -04:00
import {
Coefs,
Flame,
Transform,
julia,
transform1Weight,
2023-07-02 15:49:36 -04:00
transform1,
2023-07-01 00:38:15 -04:00
transform2Weight,
transform3Weight,
2023-07-02 15:49:36 -04:00
transform3,
2023-07-02 15:30:56 -04:00
render,
2023-07-01 00:38:15 -04:00
} from "./2a-variations";
2023-07-02 15:49:36 -04:00
import { transform2Post } from "./2b-post";
2023-07-01 00:38:15 -04:00
export class FlameFinal extends Flame {
constructor(
transforms: [number, Transform][],
public readonly final: Transform
) {
super(transforms);
}
2023-07-02 15:30:56 -04:00
step() {
super.step();
[this.x, this.y] = this.final.apply(this.x, this.y);
2023-07-01 00:38:15 -04:00
}
}
2023-07-02 15:49:36 -04:00
export const transformFinal = new Transform(
{
a: 2,
b: 0,
c: 0,
d: 0,
e: 2,
f: 0,
},
[[1, julia]]
);
2023-07-01 00:38:15 -04:00
export function renderFinal(image: ImageData) {
const flame = new FlameFinal(
[
[transform1Weight, transform1],
2023-07-02 15:49:36 -04:00
[transform2Weight, transform2Post],
2023-07-01 00:38:15 -04:00
[transform3Weight, transform3],
],
transformFinal
);
2023-07-02 15:30:56 -04:00
render(flame, 1, image);
2023-07-01 00:38:15 -04:00
}