las 0.7.4

Read and write point clouds stored in the ASPRS las file format.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// The direction at which the scanner mirror was traveling at the time of pulse output.
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ScanDirection {
    /// The scan is moving from the right to the left.
    RightToLeft,
    /// The scan is moving from the left to the right.
    LeftToRight,
}

impl Default for ScanDirection {
    fn default() -> ScanDirection {
        ScanDirection::RightToLeft
    }
}