Skip to content

Commit

Permalink
fix import error
Browse files Browse the repository at this point in the history
  • Loading branch information
olimot committed Oct 12, 2024
1 parent 952eab1 commit 9f06f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpu/marching-cubes.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import triTableURL from "./u8-tri-table-256x16.bin?url";
import triTableURL from "../u8-tri-table-256x16.bin?url";

export const triTable = await fetch(triTableURL).then(async (res) => {
return new Uint8Array(await res.arrayBuffer());
Expand Down

0 comments on commit 9f06f50

Please sign in to comment.