aboutsummaryrefslogtreecommitdiff
path: root/src/material/diffuse_light.rs
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2021-03-07 18:25:35 +0100
committerJulian T <julian@jtle.dk>2021-03-07 18:25:35 +0100
commit94b14ec5a24f587c97b11d6c56b9116a58a7385a (patch)
tree7dd8f776c257b296be96dfc6ecb9c182343e70ce /src/material/diffuse_light.rs
parent3f78cacdd93036dbd51bae77d5d8e5430a0bc75f (diff)
Add light materials
Diffstat (limited to 'src/material/diffuse_light.rs')
-rw-r--r--src/material/diffuse_light.rs27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/material/diffuse_light.rs b/src/material/diffuse_light.rs
new file mode 100644
index 0000000..fe462a8
--- /dev/null
+++ b/src/material/diffuse_light.rs
@@ -0,0 +1,27 @@
+use super::Material;
+use crate::core::{Ray, Spectrum};
+use crate::Float;
+
+pub struct DiffuseLight {
+ color: Spectrum,
+}
+
+impl DiffuseLight {
+ pub fn new(c: Spectrum) -> Self {
+ Self {
+ color: c,
+ }
+ }
+
+ pub fn new_white(s: Float) -> Self {
+ Self {
+ color: Spectrum::new_rgb(s, s, s),
+ }
+ }
+}
+
+impl Material for DiffuseLight {
+ fn emitted(&self, _: &Ray) -> Option<Spectrum> {
+ Some(self.color)
+ }
+}