pub struct CartesianEffort {
pub force: Position3D,
pub torque: Position3D,
}Expand description
笛卡尔空间力/力矩
Fields§
§force: Position3D力(牛顿)
torque: Position3D力矩(牛顿·米)
Implementations§
Source§impl CartesianEffort
impl CartesianEffort
Sourcepub fn new(force: Position3D, torque: Position3D) -> Self
pub fn new(force: Position3D, torque: Position3D) -> Self
创建新的笛卡尔力/力矩
Trait Implementations§
Source§impl Clone for CartesianEffort
impl Clone for CartesianEffort
Source§fn clone(&self) -> CartesianEffort
fn clone(&self) -> CartesianEffort
Returns a duplicate 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 CartesianEffort
impl Debug for CartesianEffort
Source§impl PartialEq for CartesianEffort
impl PartialEq for CartesianEffort
impl Copy for CartesianEffort
impl StructuralPartialEq for CartesianEffort
Auto Trait Implementations§
impl Freeze for CartesianEffort
impl RefUnwindSafe for CartesianEffort
impl Send for CartesianEffort
impl Sync for CartesianEffort
impl Unpin for CartesianEffort
impl UnwindSafe for CartesianEffort
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more