-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 890 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (28 loc) · 890 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Convex Hull Visualization</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
</head>
<style>
</style>
<body onload="setup();">
<div id="navigation">
<div class="title">
<div style="float: left; margin-left: 10%; margin-right: 30%;">
<h3>Convex Hull Visualization</h3>
</div>
<div class="choices" id="choices">
<p onclick="grahamScan()">Graham Scan</p>
<p onclick="qHull()">Quick Hull</p>
</div>
</div>
</div>
<div id="main">
</div>
</body>
<script src = "js/scan.js"></script>
<script src = "js/hull.js"></script>
</html>