add light parser

This commit is contained in:
Shuo Feng 2024-02-18 20:52:59 -05:00
parent 73b90f7535
commit e13fd8a438
Signed by: sfeng
GPG key ID: 1E83AE6CD1C037B1
4 changed files with 46 additions and 2 deletions

View file

@ -7,3 +7,7 @@ void Light::setTransform(const Matrix4f &transform) {
void Light::setGridSize(unsigned int gridSize) { this->gridSize = gridSize; }
void Light::setUseCenter(bool useCenter) { this->useCenter = useCenter; }
void PointLight::illumination() const {}
void AreaLight::illumination() const {}