cloudy-raytracer/scene/simplescene.h

15 lines
249 B
C
Raw Normal View History

2022-10-28 09:31:13 +02:00
#ifndef SIMPLESCENE_H
#define SIMPLESCENE_H
#include "scene/scene.h"
class SimpleScene : public Scene {
public:
// Raytracing functions
bool findIntersection(Ray &ray) const override;
bool findOcclusion(Ray &ray) const override;
};
#endif