removed testing output

This commit is contained in:
arvid schröder 2022-11-10 18:16:13 +01:00
parent f5a6e9e119
commit 6d78d8c554

View file

@ -21,10 +21,5 @@ Texture SimpleRenderer::renderImage(Scene const &scene, Camera const &camera, in
image.setPixelAt(x, height - 1 - y, scene.traceRay(ray));
}
}
for (int x = 0; x < 20; x++) {
for (int y = 0; y < 20; y++) {
image.setPixelAt(x, y, Color(0.0f, 1.0f, 0.0f));
}
}
return image;
}