pub struct HandEyeMotionPair {
pub robot_motion: RigidTransform3,
pub camera_motion: RigidTransform3,
}Expand description
Robot/camera relative motions for A X = X B hand-eye calibration.
Fields§
§robot_motion: RigidTransform3Robot/end-effector motion A.
camera_motion: RigidTransform3Camera motion B.
Trait Implementations§
Source§impl Clone for HandEyeMotionPair
impl Clone for HandEyeMotionPair
Source§fn clone(&self) -> HandEyeMotionPair
fn clone(&self) -> HandEyeMotionPair
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 HandEyeMotionPair
impl Debug for HandEyeMotionPair
Source§impl PartialEq for HandEyeMotionPair
impl PartialEq for HandEyeMotionPair
Source§fn eq(&self, other: &HandEyeMotionPair) -> bool
fn eq(&self, other: &HandEyeMotionPair) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for HandEyeMotionPair
impl StructuralPartialEq for HandEyeMotionPair
Auto Trait Implementations§
impl Freeze for HandEyeMotionPair
impl RefUnwindSafe for HandEyeMotionPair
impl Send for HandEyeMotionPair
impl Sync for HandEyeMotionPair
impl Unpin for HandEyeMotionPair
impl UnsafeUnpin for HandEyeMotionPair
impl UnwindSafe for HandEyeMotionPair
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