delete unused codes

This commit is contained in:
Shuo Feng 2024-03-17 23:59:10 -04:00
parent b510e1d4d0
commit 2efe817cd7
Signed by: sfeng
GPG key ID: 1E83AE6CD1C037B1
2 changed files with 0 additions and 7 deletions

View file

@ -1,5 +1,4 @@
#include "RayTracer.h"
#include "../external/simpleppm.h"
#include "HitRecord.h"
#include "Output.h"
#include "Parser.h"
@ -76,11 +75,6 @@ void RayTracer::render() {
}
}
void RayTracer::output() {
for (auto output : outputs)
output->write();
}
void RayTracer::run() {
parse();

View file

@ -24,7 +24,6 @@ private:
void parse();
void calculateColor(const HitRecord &, int);
void render();
void output();
};
#endif // !RAY_TRACER_H_