blob: 46b17da0d3006abd3ae6bec5aa3e3899bffb6ab9 (
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
|
//
// Created by Keuin on 2022/4/15.
//
#ifndef RT_MATERIAL_DIELECTRIC_H
#define RT_MATERIAL_DIELECTRIC_H
#include "vec.h"
#include "material.h"
class material_dielectric : public material {
double ri_inv;
static double reflectance(double cosine, double ref_idx) {
assert(cosine > 0);
assert(ref_idx > 0);
// Use Schlick's approximation for reflectance.
auto r0 = (1 - ref_idx) / (1 + ref_idx);
r0 = r0 * r0;
return r0 + (1 - r0) * pow((1 - cosine), 5);
}
public:
explicit material_dielectric(double ri) : ri_inv{1.0 / ri} {}
bool scatter(ray3d &r, const object &hit_obj, double hit_t, random_uv_gen_3d &ruvg) const override;
};
#endif //RT_MATERIAL_DIELECTRIC_H
|