pub struct HPChain<const N: usize> { /* private fields */ }Expand description
Precomputed Hayati-Paul chain with SoA layout.
Convention: T_i = Rz(θ) · Rx(α) · Ry(β) · Tx(a) · Tz(d)
HP adds a β rotation about Y, which makes it numerically stable for
nearly-parallel consecutive joint axes where standard DH is singular.
Implementations§
Trait Implementations§
Source§impl From<HPChain<1>> for DynamicHPChain
impl From<HPChain<1>> for DynamicHPChain
Source§impl From<HPChain<2>> for DynamicHPChain
impl From<HPChain<2>> for DynamicHPChain
Source§impl From<HPChain<3>> for DynamicHPChain
impl From<HPChain<3>> for DynamicHPChain
Source§impl From<HPChain<4>> for DynamicHPChain
impl From<HPChain<4>> for DynamicHPChain
Source§impl From<HPChain<5>> for DynamicHPChain
impl From<HPChain<5>> for DynamicHPChain
Source§impl From<HPChain<6>> for DynamicHPChain
impl From<HPChain<6>> for DynamicHPChain
Source§impl From<HPChain<7>> for DynamicHPChain
impl From<HPChain<7>> for DynamicHPChain
Auto Trait Implementations§
impl<const N: usize> Freeze for HPChain<N>
impl<const N: usize> RefUnwindSafe for HPChain<N>
impl<const N: usize> Send for HPChain<N>
impl<const N: usize> Sync for HPChain<N>
impl<const N: usize> Unpin for HPChain<N>
impl<const N: usize> UnsafeUnpin for HPChain<N>
impl<const N: usize> UnwindSafe for HPChain<N>
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