proportion/src/constants.rs

10 lines
226 B
Rust

use crate::Proportion;
impl Proportion {
pub const MIN: Self = Proportion { value: 0.0 };
pub const MAX: Self = Proportion { value: 1.0 };
pub const ZERO: Self = Self::MIN;
pub const ONE: Self = Self::MAX;
}