library: light: directional: add deserialization
This commit is contained in:
parent
85f274a0b1
commit
42abfed3fa
|
@ -1,10 +1,12 @@
|
||||||
use super::{Light, SpatialLight};
|
use super::{Light, SpatialLight};
|
||||||
use crate::core::LinearColor;
|
use crate::core::LinearColor;
|
||||||
use crate::{Point, Vector};
|
use crate::{Point, Vector};
|
||||||
|
use serde::Deserialize;
|
||||||
|
|
||||||
/// Represent a light emanating from a far away source, with parallel rays on all points.
|
/// Represent a light emanating from a far away source, with parallel rays on all points.
|
||||||
#[derive(Debug, PartialEq)]
|
#[derive(Debug, PartialEq, Deserialize)]
|
||||||
pub struct DirectionalLight {
|
pub struct DirectionalLight {
|
||||||
|
#[serde(deserialize_with = "crate::serialize::vector_normalizer")]
|
||||||
direction: Vector,
|
direction: Vector,
|
||||||
color: LinearColor,
|
color: LinearColor,
|
||||||
}
|
}
|
||||||
|
@ -63,4 +65,14 @@ mod test {
|
||||||
let expected = (Vector::new(-1., 0., 0.), std::f32::INFINITY);
|
let expected = (Vector::new(-1., 0., 0.), std::f32::INFINITY);
|
||||||
assert_eq!(ans, expected)
|
assert_eq!(ans, expected)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn deserialization_works() {
|
||||||
|
let yaml = "{direction: [1.0, 0.0, 0.0], color: {r: 1.0, g: 0.5, b: 0.2}}";
|
||||||
|
let light: DirectionalLight = serde_yaml::from_str(yaml).unwrap();
|
||||||
|
assert_eq!(
|
||||||
|
light,
|
||||||
|
DirectionalLight::new(Vector::new(1., 0., 0.), LinearColor::new(1., 0.5, 0.2))
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue