-
Notifications
You must be signed in to change notification settings - Fork 10
/
errata.html
133 lines (69 loc) · 3.24 KB
/
errata.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
<html>
<head>
<title>3D Engine Design for Virtual Globes</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-16048240-4']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<img src="strip.png" width="630" height="95" alt="3D Engine Design for Virtual Globes Cover" />
<table summary="" border="0" width="630">
<tr align="center">
<td><a href="index.html">Home</a></td>
<td><a href="toc.html">TOC</a></td>
<td><a href="backcover.html">Back Cover</a></td>
<td><a href="reviews.html">Reviews</a></td>
<td><a href="code.html">Code</a></td>
<td><a href="figures.html">Figures</a></td>
<td><a href="bibliography.html">Bibliography</a></td>
<td><a href="bibtex.html">BibTeX</a></td>
<td><a href="errata.html">Errata</a></td>
<td><a href="http://blog.virtualglobebook.com/">Blog</a></td>
</tr>
</table>
<h1>Errata</h1>
<table summary="" border="0" width="630">
<tr><td>
<ul>
<li>
Page 15: Top paragraph: "even though they are both one square degree" should be "even though they are both <em>one hundred</em> square degrees."
</li>
<li>
Page 17: In Listing 2.2, the signs of the X and Y components of vector <em>n</em> in the comment are reversed. It should be "(-1.0 / Sqrt(2.0), 1.0 / Sqrt(2.0), 0.0)".
</li>
<li>
Page 27: In Listing 2.8, the last line of the ScaleToGeocentricSurface function should read "return beta * p;".
</li>
<li>
Page 34: In the last equation on the page, "h = sign(h • r - 0)||h||", the "- 0" is extraneous.
</li>
<li>
Page 62: In Listing 3.7, the second <em>else</em> condition should be "else (leftEnabled > rightEnabled)" instead of "else (rightEnabled > leftEnabled)".
</li>
<li>
Page 147: The first sentence, "The function u_blendDurationScale is simply precomputed as ..." should read, "The <em>uniform</em> u_blendDurationScale is simply precomputed as ..."
</li>
<li>
Page 166: center<span style="vertical-align:sub;">eye</span> should be (28728.76, -28740.95, 16334.01, 1.0), not (0.0, 0.0, -800.0, 1.0).
</li>
<li>
Page 170: The last sentence of the first paragraph, "The complete RTC code example is in the CPURelativeToEye class in Chapter05Jitter," should read, "The complete <em>RTE</em> code example is in the CPURelativeToEye class in Chapter05Jitter."
</li>
<li>
Page 430: Figure 13.10 is missing the red square. It should be:
<p align="center"><img src="figure1310.png" width="317" height="315" alt="Figure 13.10" /></p>
</li>
</ul>
<p>Please email us us with additional errata: <a href="mailto:[email protected]">[email protected]</a>.</p>
</td></tr>
</table>
</body>
</html>