pub struct FisheyeObservation {
pub theta: f64,
pub distorted_radius: f64,
}Expand description
Fisheye angle/radius sample in normalized image coordinates.
Fields§
§theta: f64Incident ray angle in radians.
distorted_radius: f64Measured distorted normalized radius.
Trait Implementations§
Source§impl Clone for FisheyeObservation
impl Clone for FisheyeObservation
Source§fn clone(&self) -> FisheyeObservation
fn clone(&self) -> FisheyeObservation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FisheyeObservation
impl Debug for FisheyeObservation
Source§impl PartialEq for FisheyeObservation
impl PartialEq for FisheyeObservation
Source§fn eq(&self, other: &FisheyeObservation) -> bool
fn eq(&self, other: &FisheyeObservation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FisheyeObservation
impl StructuralPartialEq for FisheyeObservation
Auto Trait Implementations§
impl Freeze for FisheyeObservation
impl RefUnwindSafe for FisheyeObservation
impl Send for FisheyeObservation
impl Sync for FisheyeObservation
impl Unpin for FisheyeObservation
impl UnsafeUnpin for FisheyeObservation
impl UnwindSafe for FisheyeObservation
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