mirror of
https://github.com/bspeice/speice.io
synced 2024-12-23 00:58:09 -05:00
34 lines
909 B
TypeScript
34 lines
909 B
TypeScript
import Blog from "../../../LayoutBlog";
|
|
|
|
import { Canvas } from "./0-utility";
|
|
import { gasket } from "./1-gasket";
|
|
import { renderBaseline } from "./2a-variations";
|
|
import { renderPost } from "./2b-post";
|
|
import { renderFinal } from "./2c-final";
|
|
import { renderBinary } from "./3a-binary";
|
|
import { renderLinear } from "./3b-linear";
|
|
import { renderLogarithmic } from "./3c-logarithmic";
|
|
|
|
export default function () {
|
|
const Layout = Blog({
|
|
title: "The fractal flame algorithm",
|
|
description: "Explaining the paper",
|
|
published: "2023-06-25",
|
|
});
|
|
return (
|
|
<Layout>
|
|
{/* <div>
|
|
<Canvas f={gasket} />
|
|
<Canvas f={renderBaseline} />
|
|
</div>
|
|
<div>
|
|
<Canvas f={renderPost} />
|
|
<Canvas f={renderFinal} />
|
|
</div> */}
|
|
<Canvas f={renderBinary} />
|
|
<Canvas f={renderLinear} />
|
|
<Canvas f={renderLogarithmic} />
|
|
</Layout>
|
|
);
|
|
}
|