6 lines
179 B
C++
6 lines
179 B
C++
|
#include "light/ambientlight.h"
|
||
|
|
||
|
Light::Illumination AmbientLight::illuminate(Scene const &scene, Ray const &ray) const {
|
||
|
return {this->color * this->intensity, -ray.normal};
|
||
|
}
|