-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.25 KB
/
Copy pathindex.html
File metadata and controls
35 lines (35 loc) · 1.25 KB
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
<html>
<head>
<title>glcrane</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<script src="errors.js"></script>
<script src="jquery-3.1.0.min.js"></script>
<script src="dist/gl-matrix-min.js"></script>
<script src="dist/webgl-obj-loader.js"></script>
<script src="glcrane.js"></script>
<div id="outer">
<canvas id="canvas"></canvas>
<div id="errors"></div>
<div id="license">
3D Origami crane by JuanG3D is licensed under CC Attribution
(<a href="https://skfb.ly/yxSK">https://skfb.ly/yxSK</a>)
</div>
</div>
<h2>Normal Vertex shader:</h2>
<pre><code id="normal_vertex"></code></pre>
<h2>Normal Fragment shader:</h2>
<pre><code id="normal_fragment"></code></pre>
<h2>RGB->XYV Vertex shader:</h2>
<pre><code id="convert_vertex"></code></pre>
<h2>RGB->XYV Fragment shader:</h2>
<pre><code id="convert_fragment"></code></pre>
<h2>Crane object:</h2>
<pre><code id="crane"></code></pre>
<h2>Viewer object:</h2>
<pre><code id="viewer"></code></pre>
<h2>Paint object:</h2>
<pre><code id="paint"></code></pre>
</body>
</html>