summaryrefslogtreecommitdiff
path: root/material_reflective.cpp
blob: aa0d3610569e70fcd925f06feba606b7be8c08bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// Created by Keuin on 2022/4/15.
//

#include "vec.h"
#include "material.h"
#include "material_reflective.h"

// perfectly-smooth reflective
template<>
bool material_reflective_<false>::scatter(ray3d &r, const object &hit_obj, double hit_t, random_uv_gen_3d &ruvg) const {
    const auto hit_point = r.at(hit_t);
    const auto nv = hit_obj.normal_vector(hit_point);
    const auto reflected = nv.reflect(r.direction());
    r.source(hit_point);
    r.direction(reflected);
    r.decay(albedo);
    return dot(reflected, nv) > 0;
}

// fuzzy reflective
template<>
bool material_reflective_<true>::scatter(ray3d &r, const object &hit_obj, double hit_t, random_uv_gen_3d &ruvg) const {
    const auto hit_point = r.at(hit_t);
    const auto nv = hit_obj.normal_vector(hit_point);
    const auto reflected = nv.reflect(r.direction()) + fuzzy_.f * ruvg.range01();
    r.source(hit_point);
    r.direction(reflected.unit_vec());
    r.decay(albedo);
    return dot(reflected, nv) > 0;
}