cloudy-raytracer/renderer/simplerenderer.cpp

17 lines
407 B
C++
Raw Normal View History

2022-10-28 09:31:13 +02:00
#include "camera/camera.h"
#include "renderer/simplerenderer.h"
#include "scene/scene.h"
#include <iostream>
#include <chrono>
#include <iomanip>
Texture SimpleRenderer::renderImage(Scene const &scene, Camera const &camera, int width, int height) {
Texture image(width, height);
// Calculate the aspect ration
// Create the image by casting one ray into the scene for each pixel
return image;
}