pub trait IkSolver<const N: usize, F: KinScalar = f32>: FKChain<N, F> {
type IkConfig: Default + Clone + Send + Sync + 'static;
// Required method
fn ik_with_config(
&self,
target: F::AAffine3,
config: &Self::IkConfig,
) -> Result<IkOutcome<N, F>, Self::Error>;
// Provided method
fn ik(&self, target: F::AAffine3) -> Result<IkOutcome<N, F>, Self::Error> { ... }
}Required Associated Types§
Required Methods§
fn ik_with_config( &self, target: F::AAffine3, config: &Self::IkConfig, ) -> Result<IkOutcome<N, F>, Self::Error>
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".