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 e617c01 commit 33fba8bCopy full SHA for 33fba8b
books/RayTracingInOneWeekend.html
@@ -1597,7 +1597,9 @@
1597
1598
for (int j = 0; j < image_height; ++j) {
1599
std::clog << "\rScanlines remaining: " << (image_height - j) << ' ' << std::flush;
1600
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++ highlight
1601
auto t = (j + random_double()) / (image_height-1);
1602
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++
1603
1604
for (int i = 0; i < image_width; ++i) {
1605
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++ highlight
0 commit comments