-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1 KB
/
index.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
42
<html>
<head>
<title>Parametric | Plotter</title>
<link rel="icon" type="image/x-icon" href="favicon.ico"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<h1>Parametric</h1>
<form>
<div class="inputs">
<label>
x =
<input
type="text"
name="x-fn"
autocapitalize="none"
autocorrect="off"
/>
</label>
<label>
y =
<input
type="text"
name="y-fn"
autocapitalize="none"
autocorrect="off"
/>
</label>
</div>
<div class="buttons">
<button type="submit">Draw</button>
<button type="button">Example</button>
</div>
</form>
<div class="container">
<canvas id="cartesian" width="300" height="300"></canvas>
<canvas id="polar" width="300" height="300"></canvas>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/5.9.0/math.min.js"></script>
<script src="index.js"></script>
</body>
</html>