mirror of
https://github.com/vonhyou/ray-tracer-comp371.git
synced 2025-06-08 07:22:01 +00:00
add RayTracer class
This commit is contained in:
parent
98f1cc82d4
commit
f17bf228aa
2 changed files with 17 additions and 0 deletions
5
src/RayTracer.cc
Normal file
5
src/RayTracer.cc
Normal file
|
@ -0,0 +1,5 @@
|
|||
#include "RayTracer.h"
|
||||
|
||||
RayTracer::RayTracer(nlohmann::json scene) {}
|
||||
|
||||
void RayTracer::run() {}
|
12
src/RayTracer.h
Normal file
12
src/RayTracer.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#ifndef RAY_TRACER_H_
|
||||
#define RAY_TRACER_H_
|
||||
|
||||
#include "../external/json.hpp"
|
||||
|
||||
class RayTracer {
|
||||
public:
|
||||
RayTracer(nlohmann::json);
|
||||
void run();
|
||||
};
|
||||
|
||||
#endif // !RAY_TRACER_H_
|
Loading…
Add table
Add a link
Reference in a new issue