pub struct IkChainSolver { /* private fields */ }Implementations§
Source§impl IkChainSolver
impl IkChainSolver
Sourcepub fn new(definition: IkChainDefinition) -> Self
pub fn new(definition: IkChainDefinition) -> Self
Create a solver with no local-axis bases (unit XYZ angle-limit frames).
Sourcepub fn new_with_local_axis_bases(
definition: IkChainDefinition,
local_axis_bases: Vec<Option<Quat>>,
) -> Self
pub fn new_with_local_axis_bases( definition: IkChainDefinition, local_axis_bases: Vec<Option<Quat>>, ) -> Self
Additive constructor: attach per-bone local-axis bases used only as the
angle-limit evaluation frame. Shorter lists are padded with None;
longer lists are truncated to the definition bone count.
pub fn solve(&mut self, input: IkChainPoseInput<'_>) -> IkChainSolveOutput
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IkChainSolver
impl RefUnwindSafe for IkChainSolver
impl Send for IkChainSolver
impl Sync for IkChainSolver
impl Unpin for IkChainSolver
impl UnsafeUnpin for IkChainSolver
impl UnwindSafe for IkChainSolver
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