cloudy-raytracer/scene/simplescene.h

15 lines
249 B
C
Raw Normal View History

2022-11-05 22:08:16 +01: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