22 lines
No EOL
563 B
HTML
22 lines
No EOL
563 B
HTML
<!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> |