We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f83efd commit 7df1eaeCopy full SHA for 7df1eae
books/RayTracingInOneWeekend.html
@@ -120,7 +120,7 @@
120
for (int i = 0; i < image_width; i++) {
121
auto r = double(i) / (image_width-1);
122
auto g = double(j) / (image_height-1);
123
- auto b = 0;
+ auto b = 0.0;
124
125
int ir = int(255.999 * r);
126
int ig = int(255.999 * g);
@@ -259,7 +259,7 @@
259
260
261
262
263
264
265
0 commit comments