-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathchapter6.html
More file actions
79 lines (77 loc) · 4.11 KB
/
chapter6.html
File metadata and controls
79 lines (77 loc) · 4.11 KB
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
<html>
<head>
<title>Learning WebGL Book Example Codes</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js" integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<!-- <script src="https://code.jquery.com/jquery-1.10.2.js"></script> -->
<script src="./jquery.js"></script>
</head>
<body>
<div class="jumbotron text-center">
<h1>Learning WebGL Book Example Code</h1>
<p>Contains the example code for the version 1.0 and 2.0.</p>
</div>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="./index.html">Home <span class="sr-only">(Chapter 3)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="./chapter5.html">Chapter 5 <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="./chapter6.html">Chapter 6 <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="./chapter7.html">Chapter 7 <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="./chapter8.html">Chapter 8 <span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</nav>
<div class="container">
<div class="jumbotron text-center">
<h3>Chapter 6 talks about the coloring a geometry in WebGL.</h3>
</div>
<div class="row">
<h1>WebGL 1.0</h1>
<a href="./Book example codes/Chapter 6/1.0/6_colored_pentagon.html" class="btn btn-primary ">A Colored Pentagon</a>
<a href="./Book example codes/Chapter 6/1.0/6_random_triangles.html" class="btn btn-primary ">Random colored triangles</a>
<a href="./Book example codes/Chapter 6/1.0/6_red_and_blue_triangles.html" class="btn btn-primary ">Red and Blue trianges</a>
<a href="./Book example codes/Chapter 6/1.0/6_Tri_color_triangle.html" class="btn btn-primary">Tri colored triangle</a>
</div>
<div class="row">
<h1>WebGL 2.0</h1>
<a href="./Book example codes/Chapter 6/2.0/6_colored_pentagon.html" class="btn btn-primary ">A Colored Pentagon</a>
<a href="./Book example codes/Chapter 6/2.0/6_random_triangles.html" class="btn btn-primary ">Random colored triangles</a>
<a href="./Book example codes/Chapter 6/2.0/6_red_and_blue_triangles.html" class="btn btn-primary ">Red and Blue trianges</a>
<a href="./Book example codes/Chapter 6/2.0/6_Tri_color_triangle.html" class="btn btn-primary">Tri colored triangle</a>
</div>
</div>
<!--Navigation bar-->
<div id="nav-placeholder">
</div>
<!-- <script>
$(document).ready(function(){
// $("button").click(function(){
$("#nav-placeholder").load('./navbar.html');
// });
});
</script> -->
<!-- Copyright -->
<div class="text-center p-4" style="background-color: rgba(0, 0, 0, 0.05);">
© 2023 Copyright:
<a class="text-reset fw-bold" href="https://sites.google.com/view/professorsingh/home">Professor Bhupendra Singh</a>
</div>
<!-- Copyright -->
</body>
<!-- <script src="Hello_WebGL2.0.js"></script></body> -->
</html>