-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 910 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 lang="en">
<head>
<title>Perspective Control</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.1/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.1/addons/p5.sound.min.js"></script>
<script src="face-api.min.js"></script>
<!-- <script src="facetracking.js"></script> -->
<script src="actions.js"></script>
<script src="math.js"></script>
<script src="scene.js"></script>
<script src="map.js"></script>
<script src="camera.js"></script>
<script src="projection.js"></script>
<script src="sketch.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
</head>
<body>
<main>
</main>
<video id="video" width="720" height="560" style="visibility: hidden; position: absolute;" autoplay muted></video>
</body>
</html>