Skip to content
Snippets Groups Projects
Commit f4388e4a authored by Lukas Werner's avatar Lukas Werner
Browse files

Fix style issues

parent c3e0fb36
No related merge requests found
......@@ -20,7 +20,9 @@
#include "Color.h"
using namespace walberla::pe::raytracing;
namespace walberla {
namespace pe {
namespace raytracing {
/*!\brief Create a Color object from HSV values.
* \param hue Hue value in degrees from 0-360
......@@ -72,3 +74,7 @@ Color Color::colorFromHSV(real_t hue, real_t saturation, real_t value) {
return Color(r, g, b);
}
}
}
}
......@@ -296,7 +296,7 @@ void Raytracer::writeImageToFile(const std::vector<BodyIntersectionInfo>& inters
for (uint32_t x = 0; x < pixelsHorizontal_; x++) {
real_t r_sum = 0, g_sum = 0, b_sum = 0;
for (uint32_t ay = uint32_c(y)*antiAliasFactor_; ay < (uint32_c(y+1))*antiAliasFactor_; ay++) {
for (uint ax = x*antiAliasFactor_; ax < (x+1)*antiAliasFactor_; ax++) {
for (uint32_t ax = x*antiAliasFactor_; ax < (x+1)*antiAliasFactor_; ax++) {
size_t i = coordinateToArrayIndex(ax, ay);
r_sum += real_c(intersectionsBuffer[i].r);
g_sum += real_c(intersectionsBuffer[i].g);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment