Skip to content

Commit

Permalink
Fix bad name for Voronoi
Browse files Browse the repository at this point in the history
  • Loading branch information
vhiribarren committed Dec 11, 2023
1 parent ccfe0c5 commit df99e30
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const UNIFORMS = {
},
};

function VoronoidNoiseControl({controlUiTunnel}: FragmentLogic) {
function VoronoiNoiseControl({controlUiTunnel}: FragmentLogic) {

const [cellCount, setCellCount] = useUniform("u_cell_count", UNIFORMS.u_cell_count.value);

Expand All @@ -31,10 +31,10 @@ function VoronoidNoiseControl({controlUiTunnel}: FragmentLogic) {
export default function Page() {
return (
<FragmentView
title="Voronoid Noise"
title="Voronoi Noise"
fragmentShader={fragmentShader}
uniforms={UNIFORMS}
withUi={true}
control={VoronoidNoiseControl} />
control={VoronoiNoiseControl} />
);
}
4 changes: 2 additions & 2 deletions src/config/menu.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
"slug": "/noise/worley-random"
},
{
"title": "Voronoid Noise",
"slug": "/noise/voronoid"
"title": "Voronoi Noise",
"slug": "/noise/voronoi"
}
]
}]

0 comments on commit df99e30

Please sign in to comment.