pub struct Inertia {
pub ixx: f64,
pub ixy: f64,
pub ixz: f64,
pub iyy: f64,
pub iyz: f64,
pub izz: f64,
}Expand description
The symmetric inertia tensor of one link, in kg*m^2.
The default is the unit tensor. The tensor must describe a physically
realizable body, which RobotBuilder::build checks.
Fields§
§ixx: f64The moment about X.
ixy: f64The product of inertia between X and Y.
ixz: f64The product of inertia between X and Z.
iyy: f64The moment about Y.
iyz: f64The product of inertia between Y and Z.
izz: f64The moment about Z.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Inertia
impl RefUnwindSafe for Inertia
impl Send for Inertia
impl Sync for Inertia
impl Unpin for Inertia
impl UnsafeUnpin for Inertia
impl UnwindSafe for Inertia
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