大変申し訳ございません。
下記の通り、誤記がありましたので謹んでお詫びして訂正いたします。
P.245 中央部の数式
【誤】
\begin{eqnarray}
x &=& r \sin \theta \cos \theta \\
y &=& r \cos \theta \\
z &=& r \sin \theta \sin \theta
\end{eqnarray}
【正】
\begin{eqnarray}
x &=& r \sin \theta \sin \phi \\
y &=& r \cos \theta \\
z &=& r \sin \theta \cos \phi
\end{eqnarray}
P.341 リスト10.16
【誤】
auto invW = 1.0f / float(w - 1); auto invH = 1.0f / float(h - 1);
【正】
auto invW = 1.0f / float(w); auto invH = 1.0f / float(h);
サンプルプログラム Chapter.10 IESProfile.cpp
【誤】
auto idx = (w - 1) * y + x;
【正】
auto idx = w * y + x;