Skip to content

Commit

Permalink
update Readme.txt; fix some output bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
disini committed Nov 26, 2023
1 parent bc15848 commit bc5f561
Show file tree
Hide file tree
Showing 9 changed files with 108,164 additions and 5 deletions.

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ int main()
// Render

std::cout << "P3\n" << image_width << " " << image_height << "\n255\n";
std::cerr << "image_width == " << image_width << " image_height == " << image_height << "\n";
std::cerr << "image_width == " << image_width << " image_height == " << image_height << "\n";
for (int j = image_height -1; j >= 0; --j)
{
std::cerr << "\n \r --------------------------- Scanlines remaining : " << j << " ------------------------------------ \n" << std::flush;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ int main()
// Render

std::cout << "P3\n" << image_width << " " << image_height << "\n255\n";
std::cerr << "image_width == " << image_width << " image_height == " << image_height << "\n";
std::cerr << "image_width == " << image_width << " image_height == " << image_height << "\n";
for (int j = image_height -1; j >= 0; --j)
{
std::cerr << "\n \r --------------------------- Scanlines remaining : " << j << " ------------------------------------ \n" << std::flush;
Expand Down
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit bc5f561

Please sign in to comment.