2020-06-01 02:49:50 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-06-06 22:11:09 +02:00
|
|
|
#include "rtweekend.h"
|
2020-06-01 02:49:50 +02:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
2020-06-06 22:11:09 +02:00
|
|
|
void write_colour(std::ostream &out, colour pixel_colour, int samples_per_pixel)
|
2020-06-01 02:49:50 +02:00
|
|
|
{
|
2020-06-06 22:11:09 +02:00
|
|
|
auto r = pixel_colour.x();
|
|
|
|
auto g = pixel_colour.y();
|
|
|
|
auto b = pixel_colour.z();
|
|
|
|
|
|
|
|
// divide the colour total by the number of samples
|
|
|
|
auto scale = 1.0 / samples_per_pixel;
|
|
|
|
r *= scale;
|
|
|
|
g *= scale;
|
|
|
|
b *= scale;
|
|
|
|
|
2020-06-01 02:49:50 +02:00
|
|
|
// write the translated [0,255] value of each colour component.
|
2020-06-06 22:11:09 +02:00
|
|
|
out << static_cast<int>(256 * clamp(r, 0.0, 0.999)) << ' '
|
|
|
|
<< static_cast<int>(256 * clamp(g, 0.0, 0.999)) << ' '
|
|
|
|
<< static_cast<int>(256 * clamp(b, 0.0, 0.999)) << '\n';
|
2020-06-01 02:49:50 +02:00
|
|
|
}
|