-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 921 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
28
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clipping</title>
<link rel="stylesheet" href="index.css" />
</head>
<body class="container">
<span id="forkongithub">
<a href="https://github.com/AngyDev/threejs-clipping">Fork me on GitHub</a>
</span>
<div class="input_container">
<div class="input_box">
<button id="clipping">Clipping</button>
<span style="display: none;" id="negatedBox">
<input type="checkbox" name="" id="negated" />
<label for="">Negated</label>
</span>
</div>
<div class="input_box">
<input type="checkbox" name="" id="hidePlane">Hide Plane</input>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>