This repository has been archived by the owner on Jan 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 2.1 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
<!doctype html>
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=UTF-8">
<meta name='author' content="Matthias Moulin">
<meta name='copyright' content="Copyright © 2015 Matthias Moulin. All Rights Reserved.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://matt77hias.github.io/res/Picture.jpg">
<meta name="twitter:site" content="@matt77hias">
<meta name="twitter:title" content="coffee-smallpt">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matthias Moulin</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/smallpt.css" type="text/css">
<script src="https://matt77hias.github.io/js/google-analytics.js" async type="text/javascript"></script>
</head>
<body>
<header>coffee-smallpt</header>
<div id="content">
<article><a href="https://github.com/matt77hias/coffee-smallpt">CoffeeScript</a> modification of Kevin Baeson's <a href="http://www.kevinbeason.com/smallpt/">99 line C++ path tracer</a>.</article>
<canvas id = "smallpt-canvas" width = "1024" height = "768">Your browser does not support the canvas element.</canvas>
<button onclick="main();">Render</button>
</div>
<script src="js/math_tools.js" type="text/javascript"></script>
<script src="js/vector.js" type="text/javascript"></script>
<script src="js/rng.js" type="text/javascript"></script>
<script src="js/sampling.js" type="text/javascript"></script>
<script src="js/ray.js" type="text/javascript"></script>
<script src="js/sphere.js" type="text/javascript"></script>
<script src="js/specular.js" type="text/javascript"></script>
<script src="js/image_io.js" type="text/javascript"></script>
<script src="js/coffee-smallpt.js" type="text/javascript"></script>
</body>
</html>