-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot3d.htm
More file actions
74 lines (70 loc) · 1.86 KB
/
plot3d.htm
File metadata and controls
74 lines (70 loc) · 1.86 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
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Plotter</title>
<script src = "plot.js">
</script>
<script src = "eplot.js">
</script>
<script>
plot=plot3d;
</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="plot3d()">
<input type="button" value="<"
onclick="shiftphim(); plot3d()">
<input type="button" value=">"
onclick="shiftphip(); plot3d()">
<input type="button" value="dg"
onclick="switchdg()">
<input type="button" value="<"
onclick="shiftam(); plot3d()">
<input type="button" value=">"
onclick="shiftap(); plot3d()">
<br><br>
f(x,y) = <input type="text" id="inputf" style="width: 600px"
value = "" onkeyup="handle_keys(event);">
<br>
g(x,y) = <input type="text" id="inputg" style="width: 600px"
value = "" onkeyup="handle_keys(event);">
<br><br>
w = <input type="text" id="inputw" value="10"
onkeyup="handle_keys(event);"> 
a = <input type="text" id="inputa" value="0"
onkeyup="handle_keys(event);"><br>
m = <input type="text" id="inputm" value="1"
onkeyup="handle_keys(event);"> 
d = <input type="text" id="inputd" value="1"
onkeyup="handle_keys(event);">
<br>
φ = <input type="text" id="inputphi" value="0"
onkeyup="handle_keys(event);"><br>
θ = <input type="text" id="inputtheta" value="45"
onkeyup="handle_keys(event);"><br>
n = <input type="text" id="inputn" value="100"
onkeyup="handle_keys(event);">
<br><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>