-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 867 Bytes
/
index.html
File metadata and controls
30 lines (29 loc) · 867 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta http-equiv="Cache-Control" content="no-cache">
<link rel="stylesheet" href="index.css">
<title>K0ttans: intersections</title>
</head>
<body>
<div class="container">
<div class="utils">
<label for="type">Type:</label>
<select id="type">
<option value="1">triangle</option>
<option value="2">some fig</option>
<option value="3">poly in poly</option>
<option value="4">your example</option>
</select>
<label for="coord">Show coordinates</label>
<input type="checkbox" id='coord' checked>
</div>
<svg class="base"></svg>
<svg class="intersections"></svg>
</div>
<script src="solution.js"></script>
<script src="index.js"></script>
</body>
</html>