2#include "interfaces/IMaterial.hpp"
3#include "interfaces/ITexture.hpp"
5#ifndef __LAMBERTIAN_HPP__
6 #define __LAMBERTIAN_HPP__
8namespace Raytracer::Materials
12 std::shared_ptr<Interfaces::ITexture> _texture;
16 Lambertian(std::shared_ptr<Interfaces::ITexture> texture);
20 double u,
double v,
const Utils::Point3 &point)
const override;
Definition Payload.hpp:11
Definition IMaterial.hpp:14
Definition Lambertian.hpp:10
bool scatter(const Core::Ray &ray, const Core::Payload &payload, Utils::Color &attenuation, Core::Ray &scattered) const override
Scatter the ray with the Lambertian material.
Definition Lambertian.cpp:50
Utils::Color emitted(double u, double v, const Utils::Point3 &point) const override
Emitted light of the Lambertian material.
Definition Lambertian.cpp:78
Lambertian(const Utils::Color &albedo)
Construct a new Lambertian object.
Definition Lambertian.cpp:15