wip
This commit is contained in:
parent
c3c5968749
commit
c5a62cfa1d
3 changed files with 95 additions and 5 deletions
22
sim.html
Normal file
22
sim.html
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="utf-8">
|
||||
<title>Mandelbrot fixed-point test</title>
|
||||
<style type="text/css">
|
||||
/* */
|
||||
</style>
|
||||
<body>
|
||||
<h1>Mandelbrot fixed-point test</h1>
|
||||
|
||||
<h2>Float</h2>
|
||||
<canvas id="float" width="256" height="256"></canvas>
|
||||
|
||||
<h2>Fixed-point imul</h2>
|
||||
<canvas id="imul" width="256" height="256"></canvas>
|
||||
|
||||
<h2>Fixed-point log</h2>
|
||||
<canvas id="log" width="256" height="256"></canvas>
|
||||
|
||||
<script async type="module" src="sim.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue