-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (134 loc) · 5.53 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Image Synthesis G5</title>
<link rel="stylesheet" href="css\styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet" />
</head>
<body>
<nav class="navbar">
<div class="navbar__container">
<a href="/" id="navbar__logo">G5</a>
<div class="navbar__toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="/" class="navbar__links">Home</a>
</li>
<li class="navbar__item">
<a href="normalmap/index.html" class="navbar__links">Mock 3D</a>
</li>
<!-- <li class="navbar__item">
<a href="/" class="navbar__links">DepthMap</a>
</li> -->
<li class="navbar__item">
<a href="ray_caster/sad.html" class="navbar__links">Ray Tracing</a>
</li>
<li class="navbar__item">
<a href="ray_caster/ray2.html" class="navbar__links">Casting Triangles</a>
</li>
<li class="navbar__item">
<a href="Ray_caster_3/ray_tracer.html" class="navbar__links">Monte-Carlo Ray Tracing</a>
</li>
<li class="navbar__item">
<a href="ray_caster/illumination.html" class="navbar__links">Final Gathering</a>
</li>
<!-- <li class="navbar__btn">
<a href="/" class="button">Contact</a>
</li> -->
</ul>
</div>
</nav>
<div class="main">
<div class="main__container">
<div class="main__content">
<h1>CSCE-647 Image Syntesis</h1>
<h2>Group-5 Project Page</h2>
<!-- <button class="main__btn"><a href="/">Members</a></button> -->
<br>
<div class="row">
<div class="column">
<div class="card">
<div class="container">
<h3><b>Mock 3-D</b></h3>
<h4>Features</h4>
<ul>
<li>Day/Night Cycle</li>
<li>Specular Power slider under the light tab</li>
<li>Reflection Intensity slider under the Reflection Tab</li>
<li>Rotation slider under the Reflection Tab</li>
<li>Real fresnel under the refraction tab</li>
</ul>
</div>
</div>
</div>
<div class="column">
<div class="card">
<h3><b>Ray-Casting</b></h4>
<h4>Features -</h4>
<ul>
<li>Camera controls under Camera tab </li>
<li>Sphere and Plane objects</li>
<li>Blinn-Phong Shading</li>
<li>Soft shadows with area light</li>
<li>Sphere and Plane Texture plane</li>
<li>Environment mapping woth infinite sphere</li>
<li><mark class="red">Bonus:</mark> Normal mapped plane and sphere</li>
</ul>
</div>
</div>
<div class="column">
<div class="card">
<h3><b>Ray Tracing</b></h3>
<h4>Features</h4>
<ul>
<li>Sphere with mirror reflection and environemnt map</li>
<li>Glass Sphere with refraction</li>
</ul>
</div>
</div>
<div class="column">
<div class="card">
<h3><b>Additional</b></h3>
<h4>Features</h4>
<ul>
<li>Casting triangle with shading</li>
<li>Monte-Carlo Ray tracer with casutics and color bleeding</li>
<li><mark class="red">Note:</mark>The Monte Carlo ray tracer is heavily based on the book "Ray Traing in One Weekend"
<a href="https://raytracing.github.io/books/RayTracingTheRestOfYourLife.html">https://raytracing.github.io/books
/RayTracingTheRestOfYourLife.html</a>
and a webgl implementation of the book present at
<a href="https://github.com/aadebdeb/webgl-raytracing/blob/master/ray-tracing-based-on-ray-tracing-in-one-weekend.html">https://github.com/aadebdeb/webgl-raytracing/blob/master/ray-tracing-based-on-ray-tracing-in-one-weekend.html</a></li>
</ul>
</div>
</div>
</div>
<!-- <h3>Instructions to run -</h3>
<ul>
<li>CLick on normalMap tab on the upper right hand corner</li>
<li>Select Picasso Self-Portrait from the dropdown button</li>
<li>Day/Night cycle can be controlled using the slider below Style Control</li>
<li>Day/Night only works for Picasso Self-Portrait and New-1 currently</li>
<li>The light can be controlled using the mouse but it may not be visible during the day time so it is best to reducde brigthness</li>
<li>New-1 and New-2 are some images we found on the internet</li>
</ul> -->
</div>
<!-- <div class="main__img--container">
<img src="New_site/images/transparent-1.gif" alt="pic" id="main__img" />
</div> -->
</div>
</div>
<!-- Footer Section -->
<div class="footer__container">
</section>
<script src="js/app.js"></script>
</body>
</html>