-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1005 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<canvas id="canvas" width="500" height="500"></canvas><br />
<select id='method'>
<option value="0">DDA</option>
<option value="1">Brezenhem</option>
<option value="2">Xiaolin</option>
</select>
<input id='x1' placeholder="X1" />
<input id='y1' placeholder="Y1" />
<input id='x2' placeholder="X2" />
<input id='y2' placeholder="Y2" />
<input id='r' placeholder="R" />
<input id='p' placeholder="P" />
<button onclick='drawLine()'>Draw Line</button>
<button onclick='drawCircle()'>Draw Circle</button>
<button onclick='drawParabola()'>Draw Parabola</button>
<button onclick='clearCanvas()'>Clear</button>
</body>
<script type="text/javascript" src='./index.js'></script>
<script type="text/javascript" src='./algorithms.js'></script>
</html>