templates/sim.html
1 2 3 4 5 6 7 8 9 10 11 12 |
<title> FDTD Wave Simulation </title>
<link rel="stylesheet" type="text/css" href="/style.css">
<script type="module">
import init from '/FDTD.js'
init().catch((error) => {
if (!error.message.startsWith("Using exceptions for control flow, don't mind me. This isn't actually an error!")) {
throw error;
}
});
</script>
|