mirror of
https://github.com/vonhyou/ray-tracer-comp371.git
synced 2025-06-08 15:31:59 +00:00
18 lines
260 B
C++
18 lines
260 B
C++
#ifndef RAY_TRACER_H_
|
|
#define RAY_TRACER_H_
|
|
|
|
#include "../external/json.hpp"
|
|
#include "Scene.h"
|
|
|
|
class RayTracer {
|
|
public:
|
|
RayTracer(nlohmann::json);
|
|
void render();
|
|
void run();
|
|
|
|
private:
|
|
Scene scene;
|
|
nlohmann::json json;
|
|
};
|
|
|
|
#endif // !RAY_TRACER_H_
|