pub struct RangeImageConfig {
pub width: usize,
pub height: usize,
pub fov_up_deg: f32,
pub fov_down_deg: f32,
}Expand description
Configuration for range_image.
Fields§
§width: usizeImage width in pixels (azimuth resolution).
height: usizeImage height in pixels (one row per laser beam).
fov_up_deg: f32Upper bound of the vertical field of view, in degrees.
fov_down_deg: f32Lower bound of the vertical field of view, in degrees (usually negative).
Implementations§
Trait Implementations§
Source§impl Clone for RangeImageConfig
impl Clone for RangeImageConfig
Source§fn clone(&self) -> RangeImageConfig
fn clone(&self) -> RangeImageConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RangeImageConfig
impl Debug for RangeImageConfig
Source§impl Default for RangeImageConfig
impl Default for RangeImageConfig
Source§impl PartialEq for RangeImageConfig
impl PartialEq for RangeImageConfig
impl Copy for RangeImageConfig
impl StructuralPartialEq for RangeImageConfig
Auto Trait Implementations§
impl Freeze for RangeImageConfig
impl RefUnwindSafe for RangeImageConfig
impl Send for RangeImageConfig
impl Sync for RangeImageConfig
impl Unpin for RangeImageConfig
impl UnsafeUnpin for RangeImageConfig
impl UnwindSafe for RangeImageConfig
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