tudelft-xray-sim 1.0.0

simulation library for the modeling assignment in the course 'Software Systems' at the TU Delft.
Documentation
/// Projection of plane or X-ray.
///
/// Planes can only be `Frontal` or `Lateral`,
/// but requests can be made for `Biplane` projections in which case both planes would be used.
///
/// You can use this enum to keep track of which projection is currently selected.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub enum Projection {
    /// Frontal projection
    #[default]
    Frontal,
    /// Lateral projection
    Lateral,
    /// A combined projection, both frontal and lateral.
    Biplane,
}