pathtracer/pathtracer/src/serialize/coefficient.rs
2020-03-24 21:47:09 +01:00

7 lines
138 B
Rust

//! Helper functions deserialize coefficients.
/// Returns the identity for a f32, i.e. 1.0.
pub fn default_identity() -> f32 {
1.
}