#include "camera/camera.h" #include "renderer/simplerenderer.h" #include "scene/scene.h" #include #include #include 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; }