-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtuner.html
36 lines (35 loc) · 1.19 KB
/
tuner.html
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
30
31
32
33
34
35
36
<!doctype html>
<html>
<head>
<style>
body {
font-family: sans-serif;
}
</style>
<meta charset="utf-8">
<title>Spline tuner</title>
</head>
<body>
<h1>Spline tuner</h1>
<svg style="position: absolute" id="s" width="800" height="480" pointer-events="all">
<!--<rect id="r" x="0" y="0" width="480" height="480" fill="#ccc" />-->
<line x1="500" y1="100" x2="780" y2 = "100" stroke="#000" />
<path id="bez" d="" stroke="blue" fill="none" pointer-events="none" />
<circle id="ctr" r="2" fill="#080" pointer-events="none" />
<path id="curv" d="" stroke="blue" fill="none" pointer-events="none" />
<line id="curv-base" x1="500" y1="300" x2="700" y2="300" stroke="black" pointer-events="none" />
<g id="plots" />
</svg>
<div>
<canvas id="map" width="480" height="480" />
</div>
<div>
<button id="loadbutton">Load</button>
<button id="savebutton">Save</button>
<button id="mapbutton">κ Map</button>
</div>
<textarea cols="80" id="json"></textarea>
</body>
<script src="curves.js"></script>
<script src="tuner.js"></script>
<script src="tunerui.js"></script>