pub struct HomographicAlignment {
pub matrix: [[f32; 3]; 3],
}Expand description
3×3 row-major homography matrix that warps the floating image into the target’s coordinate system.
Fields§
§matrix: [[f32; 3]; 3]Trait Implementations§
Source§impl Clone for HomographicAlignment
impl Clone for HomographicAlignment
Source§fn clone(&self) -> HomographicAlignment
fn clone(&self) -> HomographicAlignment
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 HomographicAlignment
impl Debug for HomographicAlignment
Source§impl PartialEq for HomographicAlignment
impl PartialEq for HomographicAlignment
Source§fn eq(&self, other: &HomographicAlignment) -> bool
fn eq(&self, other: &HomographicAlignment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for HomographicAlignment
impl StructuralPartialEq for HomographicAlignment
Auto Trait Implementations§
impl Freeze for HomographicAlignment
impl RefUnwindSafe for HomographicAlignment
impl Send for HomographicAlignment
impl Sync for HomographicAlignment
impl Unpin for HomographicAlignment
impl UnsafeUnpin for HomographicAlignment
impl UnwindSafe for HomographicAlignment
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