mirror of
https://github.com/vonhyou/ray-tracer-comp371.git
synced 2025-08-15 02:18:03 +00:00
make the render function private
This commit is contained in:
parent
1b0df92e70
commit
39c584eff9
1 changed files with 1 additions and 1 deletions
|
@ -7,12 +7,12 @@
|
||||||
class RayTracer {
|
class RayTracer {
|
||||||
public:
|
public:
|
||||||
RayTracer(const nlohmann::json &);
|
RayTracer(const nlohmann::json &);
|
||||||
void render();
|
|
||||||
void run();
|
void run();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Scene scene;
|
Scene scene;
|
||||||
nlohmann::json json;
|
nlohmann::json json;
|
||||||
|
void render();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // !RAY_TRACER_H_
|
#endif // !RAY_TRACER_H_
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue