-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
33 lines (30 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo Computer Graphics Lab</title>
</head>
<body>
<h1>Demo for Computer Graphics Lab</h1>
<p>
This repository contains demos for the course Computer Graphics at the Johannes Kepler University Linz.
</p>
<h1>Projects</h1>
<ul>
<li><a href="./00_zbuffer/">00_zbuffer</a><br>
Basic demo that demonstrates the depth buffer and depth testing. Multiple spheres are drawn.
</li>
<li><a href="./00_blending/">00_blending</a><br>
Basic demo that demonstrates Alpha-Blending. The scene contains a floor and 3 quads with transparency.
The blending function can be changed interactively.
</li>
<li><a href="./00_shading/">00_shading</a><br>
Basic demo that illumination models.
</li>
<li><a href="./00_texturing/">00_texturing</a><br>
Basic demo that shows a scene with models and a floor with textures. Textures and the model can be changed.
Texture filtering techniques (i.e., mipmapping and anisotropic filtering) are demonstrated.
</li>
</ul>
</body>
</html>