-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtanz.html
41 lines (38 loc) · 1.5 KB
/
tanz.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
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>z->tanz</title>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id="container"></div>
<div id="title">
<h1>z->tanz</h1>
<p>Im and Re axes have been scaled down by 2</p>
<canvas id="canvas" height="200" width="200"></canvas>
<br>
<a href="index.html">z^2</a>
<a href="z^3.html">z^3</a>
<a href="expz.html">e^z</a>
<a href="sinz.html">sinz</a>
<a href="cosz.html">cosz</a>
<a href="tanz.html">tanz</a>
<a href="sqrtz.html">sqrt(z)</a>
<a href="z^-1.html">1/z</a>
<br>
<button onclick="graph.hina()">spin</button>
<button onclick="graph.showRe()">Re</button>
<button onclick="graph.showIm()">Im</button>
<button onclick="graph.ReIm()">Re-Im?</button>
<button onclick="graph.nega()">-ve</button>
<button onclick="graph.swap()">swap 1 and i</button>
</div>
</body>
<script src="js/three/three.js"></script>
<script src="js/three/OrbitControls.js"></script>
<script src="js/three/THREE.MeshLine.js"></script>
<script src="js/graph/graph.js"></script>
<script src="js/graph/tan.js"></script>
</html>