-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (50 loc) · 2.33 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>WebGL Projects</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<div class="nav">
<br/>
<h4>Web Graphics</h4>
<br/>
<strong>Physic Based Modeling</strong>
<ul>
<li><a href="BouncingBall/index.html" target="demo">Bouncing Ball</a></li>
<li><a href="Particles/index.html" target="demo">Particles</a></li>
<li><a href="Flocking/index.html" target="demo">Flocking</a></li>
<li><a href="Cloth/index.html" target="demo">Cloth</a></li>
<li><a href="Rigidbody/index.html" target="demo">Rigid Body</a></li>
<li><a href="Fluid/index.html" target="demo">Fluid</a></li>
</ul>
<strong>Puzzle Solving Tools</strong>
<ul>
<li><a href="PuzzleSolvingTool/generator.html" target="demo">Puzzle Generator</a></li>
<li><a href="PuzzleSolvingTool/debugger.html" target="demo">Debugger</a></li>
</ul>
<strong>Object Viewers</strong>
<ul>
<li><a href="Skull3D/index.html" target="demo">3D Skull Viewer</li>
<li><a href="OBJViewer/index.html" target="demo">OBJ Viewer</a></li>
</ul>
<strong>City Route Planning</strong>
<ul>
<li><a href="City/index.html" target="demo">3D City</a></li>
</ul>
<br/>
<br/>
<br/>
---
<span>Author: Yongqing Liang</span>
<span><a href="https://github.com/xmlyqing00">github.com/xmlyqing00</a></span>
<span>Based on <a href="http://threejs.org">ThreeJS</a></span>
</div>
<iframe src="Flocking/index.html" name="demo" id="demo" allow="fullscreen; xr-spatial-tracking;" frameborder="0">
</iframe>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8" crossorigin="anonymous"></script>
</body>
</html>