Raytracer
Loading...
Searching...
No Matches
Lambertian.hpp
1#include <memory>
2#include "interfaces/IMaterial.hpp"
3#include "interfaces/ITexture.hpp"
4
5#ifndef __LAMBERTIAN_HPP__
6 #define __LAMBERTIAN_HPP__
7
8namespace Raytracer::Materials
9{
11 private:
12 std::shared_ptr<Interfaces::ITexture> _texture;
13
14 public:
15 Lambertian(const Utils::Color &albedo);
16 Lambertian(std::shared_ptr<Interfaces::ITexture> texture);
17 bool scatter(const Core::Ray &ray, const Core::Payload &payload,
18 Utils::Color &attenuation, Core::Ray &scattered) const override;
20 double u, double v, const Utils::Point3 &point) const override;
21 };
22} // namespace Raytracer::Materials
23
24#endif /* __LAMBERTIAN_HPP__ */
Definition Payload.hpp:11
Definition Ray.hpp:9
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
Definition VecN.hpp:40