pub struct StereoPointPair {
pub left: Vec3<f64>,
pub right: Vec3<f64>,
}Expand description
Matched 3D point expressed in left and right camera frames.
Fields§
§left: Vec3<f64>Point in the left camera frame.
right: Vec3<f64>Same point in the right camera frame.
Trait Implementations§
Source§impl Clone for StereoPointPair
impl Clone for StereoPointPair
Source§fn clone(&self) -> StereoPointPair
fn clone(&self) -> StereoPointPair
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 StereoPointPair
impl Debug for StereoPointPair
Source§impl PartialEq for StereoPointPair
impl PartialEq for StereoPointPair
Source§fn eq(&self, other: &StereoPointPair) -> bool
fn eq(&self, other: &StereoPointPair) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StereoPointPair
impl StructuralPartialEq for StereoPointPair
Auto Trait Implementations§
impl Freeze for StereoPointPair
impl RefUnwindSafe for StereoPointPair
impl Send for StereoPointPair
impl Sync for StereoPointPair
impl Unpin for StereoPointPair
impl UnsafeUnpin for StereoPointPair
impl UnwindSafe for StereoPointPair
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