-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (25 loc) · 724 Bytes
/
index.html
File metadata and controls
29 lines (25 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>2D plotting demo</title>
<link rel="stylesheet" href="demo/demo.css">
</head>
<body>
<div>
<p>
<button id="random-lines">Lines</button>
<button id="random-circles">Circles</button>
<button id="mandelbrot-set">Mandelbrot set</button>
<button id="sin-cos">sin x + cos y</button>
<label><input id="show-edges" type="checkbox"> Show edges</label>
<label>Pixel size: 2^<input id="pixel-size" type="number" value="-1" min="-2" max="9"></label>
<p>
<span id="plot-stats">…</span>
</div>
<svg>
<g id="chart">
</g>
</svg>
<script type="module" src="demo/demo.ts"></script>
</body>