-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 870 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
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<style>
html,
body {
background-color: black;
}
* {
color: lightgray;
}
canvas {
display: block;
outline: solid 1px lightgray;
}
main {
display: flex;
gap: 1rem;
}
section {
width: 30%;
}
#setParams {
display: flex;
flex-direction: column;
gap: 1rem;
}
</style>
<script src="public/p5.js"></script>
<title>绘制三维图形</title>
</head>
<body></body>
<script src="public/config.js"></script>
<script src="public/common.js"></script>
<script src="math_utility.js"></script>
<script src="vertex_shaders.js"></script>
<script src="fragment_shaders.js"></script>
<script src="sketch.js"></script>
</html>