-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathisoplot.htm
More file actions
70 lines (66 loc) · 1.67 KB
/
isoplot.htm
File metadata and controls
70 lines (66 loc) · 1.67 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Plotter</title>
<script src = "plot.js">
</script>
<script src = "eplot.js">
</script>
<script>
click = clickiso;
plot = isoplot;
</script>
<link rel="stylesheet" href="s1.css">
</head>
<body>
<br>
<br><br>
<canvas id="canvas1" width="720" height="480"
style="border: thin solid gray">
No canvas.
</canvas>
<div class="nb">
<input type="button" value="plot"
onclick="isoplot()">
<input type="button" value="<"
onclick="shiftam(); isoplot()">
<input type="button" value=">"
onclick="shiftap(); isoplot()">
 <span id="xy" class="mono"></span>
<br><br>
f(x,y) = <input type="text" id="inputf" style="width: 600px"
value="x" onkeyup="handle_keys(event);">
<br><br>
<table>
<tr><td style="padding-left: 0em">
px = <input type="text" id="inputx" value="0"
onkeyup="handle_keys(event);"><br>
py = <input type="text" id="inputy" value="0"
onkeyup="handle_keys(event);"><br>
wx = <input type="text" id="inputwx" value="10"
onkeyup="handle_keys(event);"><br>
wy = <input type="text" id="inputwy" value="10"
onkeyup="handle_keys(event);">
</td><td style="padding-left: 2em">
a = <input type="text" id="inputa" value="0"
onkeyup="handle_keys(event);"><br>
d = <input type="text" id="inputd" value="1"><br>
n = <input type="text" id="inputn" value="10"
onkeyup="handle_keys(event);">
</td></tr>
</table>
<br>
<a href="doc.htm" class="modest">help</a>
(<a href="doc-de.htm" class="modest">Hilfe</a>)
<br><br>
<input type="button" value="calc" onclick="calc()">
<input type="text" id="inputc" style="width:400px"
onkeyup="calc_keys(event);">
<br>
<p id="ans" class="mono">ans =</p>
<br><br>
<br>
</div>
</body>
</html>