parse and write scene

This commit is contained in:
Shuo Feng 2024-02-13 23:45:29 -05:00
parent 03b6bbbb8e
commit 7d273f9420
Signed by: sfeng
GPG key ID: 1E83AE6CD1C037B1
3 changed files with 22 additions and 1 deletions

View file

@ -1,5 +1,11 @@
#include "Scene.h"
string Scene::getName() { return name; }
int Scene::getWidth() { return width; }
int Scene::getHeight() { return height; }
void Scene::setRaysPerPixel(const Eigen::VectorXi &raysPerPixel) {
this->raysPerPixel = raysPerPixel;
}