pub struct LasPoint {
pub x: f64,
pub y: f64,
pub z: f64,
pub intensity: u16,
pub return_flags: u8,
pub classification: u8,
pub scan_angle: i8,
pub user_data: u8,
pub point_source_id: u16,
}Expand description
One decoded LAS point (format 0 fields).
Fields§
§x: f64World-space X coordinate (metres or survey feet).
y: f64World-space Y coordinate.
z: f64World-space Z coordinate.
intensity: u16Return intensity (0–65535).
return_flags: u8Return number and flags byte.
classification: u8Classification byte.
scan_angle: i8Scan angle rank.
user_data: u8User data.
point_source_id: u16Point source ID.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LasPoint
impl RefUnwindSafe for LasPoint
impl Send for LasPoint
impl Sync for LasPoint
impl Unpin for LasPoint
impl UnsafeUnpin for LasPoint
impl UnwindSafe for LasPoint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.