mirror of
https://github.com/vonhyou/ray-tracer-comp371.git
synced 2025-06-08 07:22:01 +00:00
calculate ambient, diffuse and specular
This commit is contained in:
parent
bb8819013c
commit
27bdd95fa6
5 changed files with 21 additions and 1 deletions
15
src/Light.cc
15
src/Light.cc
|
@ -1,4 +1,6 @@
|
|||
#include "Light.h"
|
||||
#include <algorithm>
|
||||
#include <cmath>
|
||||
|
||||
void Light::setTransform(const Matrix4f &transform) {
|
||||
this->transform = transform;
|
||||
|
@ -19,7 +21,18 @@ Vector3f PointLight::illumination(const HitRecord &hit,
|
|||
if (g != geometry && g->intersect(shadowRay).hasValue())
|
||||
return Vector3f::Zero();
|
||||
|
||||
return Vector3f::Zero();
|
||||
float distance = (center - shadingPoint).norm();
|
||||
float att = 1.0f / distance / distance;
|
||||
|
||||
Vector3f ambient_ = geometry->coefAmbient() * geometry->ambient();
|
||||
Vector3f diffuse_ = att * geometry->coefDiffuse() * diffuse *
|
||||
std::max(0.0f, hit.normal().dot(rayDirection));
|
||||
|
||||
Vector3f halfWay = (hit.viewDirection() + rayDirection).normalized();
|
||||
Vector3f specular_ =
|
||||
att * geometry->coefSpecular() * specular *
|
||||
pow(std::max(0.0f, hit.normal().dot(halfWay)), geometry->getPhong());
|
||||
return ambient_ + diffuse_ + specular_;
|
||||
}
|
||||
|
||||
Vector3f AreaLight::illumination(const HitRecord &hit,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue