-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkdtree.html
27 lines (27 loc) · 851 Bytes
/
kdtree.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
<html>
<head>
<title>GI - Advanced Checkpoint : KDTree</title>
<link rel="stylesheet" type="text/css" href="/static/css/info.css"/>
</head>
<body>
<h1>CSCI 711- Global Illumination</h1>
<h2>Ray Tracer</h2>
<h3>Advanced Checkpoint(incomplete)</h3>
<h4>Submitted by: Snehal Padhye(sp1471@rit.edu)</h4>
<p>KDTree</p>
<div class="row">
<div class="column">
<figure>
<img src="./static/render_normal.png">
<figcaption>Normal Intersection: Time = 36 s</figcaption>
</figure>
</div>
<div class="column">
<figure>
<img src="./static/render_kd.png">
<figcaption>Kd Tree: Time = 26 s</figcaption>
</figure>
</div>
</div>
</body>
</html>