-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 836 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
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en" style="overflow-y: hidden;">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="lodash.js"></script>
<script src="gpu-browser.min.js"></script>
<script src="pixi.min.js"></script>
<script src="newton.js"></script>
<!-- <script src="pixi-extract.js"></script> -->
<title>Scoi</title>
<style>
html{
height: 100vh;
}
</style>
</head>
<body scroll="no">
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script>
let max=(a,b)=>a>b?a:b
let min=(a,b)=>a<b?a:b
let vm;
let test;
let engine
let pixels;
let Bezier;
</script>
</body>
</html>