#[repr(C)]pub enum MotionModel {
MM_TRANSLATION = 0,
MM_TRANSLATION_AND_SCALE = 1,
MM_ROTATION = 2,
MM_RIGID = 3,
MM_SIMILARITY = 4,
MM_AFFINE = 5,
MM_HOMOGRAPHY = 6,
MM_UNKNOWN = 7,
}
Expand description
Describes motion model between two point clouds.
Variants§
MM_TRANSLATION = 0
MM_TRANSLATION_AND_SCALE = 1
MM_ROTATION = 2
MM_RIGID = 3
MM_SIMILARITY = 4
MM_AFFINE = 5
MM_HOMOGRAPHY = 6
MM_UNKNOWN = 7
Trait Implementations§
Source§impl Clone for MotionModel
impl Clone for MotionModel
Source§fn clone(&self) -> MotionModel
fn clone(&self) -> MotionModel
Returns a copy 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 MotionModel
impl Debug for MotionModel
Source§impl From<MotionModel> for i32
impl From<MotionModel> for i32
Source§fn from(v: MotionModel) -> Self
fn from(v: MotionModel) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MotionModel
impl PartialEq for MotionModel
Source§impl TryFrom<i32> for MotionModel
impl TryFrom<i32> for MotionModel
impl Copy for MotionModel
impl Eq for MotionModel
impl StructuralPartialEq for MotionModel
Auto Trait Implementations§
impl Freeze for MotionModel
impl RefUnwindSafe for MotionModel
impl Send for MotionModel
impl Sync for MotionModel
impl Unpin for MotionModel
impl UnwindSafe for MotionModel
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