diff options
author | Keuin <[email protected]> | 2022-04-15 14:34:46 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2022-04-15 14:34:46 +0800 |
commit | 1ed823c4fc7ad137b88019a2fa9f17ae3d10215d (patch) | |
tree | d1ababb9e3c0dd10929ee60c086b1f91b210c430 /material_reflective.h | |
parent | 9c3632426ca0cf8691347873dd9b1fae92e5e5bf (diff) |
Move diffusive into material_diffusive. Add material_reflective.h.
Diffstat (limited to 'material_reflective.h')
-rw-r--r-- | material_reflective.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/material_reflective.h b/material_reflective.h new file mode 100644 index 0000000..d2e4010 --- /dev/null +++ b/material_reflective.h @@ -0,0 +1,20 @@ +// +// Created by Keuin on 2022/4/15. +// + +#ifndef RT_MATERIAL_REFLECTIVE_H +#define RT_MATERIAL_REFLECTIVE_H + +#include "vec.h" +#include "material.h" + +// metal +class material_reflective : public material { + vec3d albedo; +public: + explicit material_reflective(vec3d &color) : albedo(color) {} + + bool scatter(ray3d &r, const object &hit_obj, double hit_t, random_uv_gen_3d &ruvg) const override; +}; + +#endif //RT_MATERIAL_REFLECTIVE_H |