-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
33 lines (33 loc) · 971 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sail</title>
<script src="ui/codemirror.js"></script>
<script src="ui/jsmode.js"></script>
<link rel="stylesheet" href="ui/codemirror.css">
<link rel="stylesheet" href="ui/duotone-light.css">
<link rel="stylesheet" href="ui/style.css">
</head>
<body>
<header>
<h1>Sail</h1>
<p>
a path tracer using WebGL for realtime performance.
github:<a href="https://github.com/Easonzero/Sail">https://github.com/Easonzero/Sail</a>
</p>
</header>
<section id="main">
<section>
<canvas id="canvas" height="512" width="512"></canvas>
<textarea id="editor"></textarea>
</section>
<button id="run" onclick="run();">RUN</button>
</section>
<footer>
<p id="footer">Made by <a href="https://github.com/Easonzero">Easonzero</a> in 2018</p>
</footer>
</body>
<script src="bin/sail.js"></script>
<script src="ui/ui.js"></script>
</html>