fix cornellbox

This commit is contained in:
Shuo Feng 2024-03-14 17:43:59 -04:00
parent c9919e5b03
commit 13fc1a9576
Signed by: sfeng
GPG key ID: 1E83AE6CD1C037B1
3 changed files with 11 additions and 4 deletions

View file

@ -10,6 +10,7 @@ float Geometry::coefDiffuse() const { return kd; }
float Geometry::coefSpecular() const { return ks; }
float Geometry::coefAmbient() const { return ka; }
float Geometry::getPhong() const { return phong; }
Geometry::Type Geometry::getType() const { return type; }
void Geometry::setTransform(const Matrix4f &transform) {
this->transform = transform;