pub trait TryComposedRotation<T, P>{
// Required method
fn try_composed_rotation(
&self,
provider: &P,
time: Time<T>,
) -> Result<Rotation, RotationError>;
}Expand description
Computes a composed rotation through multiple intermediate frames.
Required Methods§
Sourcefn try_composed_rotation(
&self,
provider: &P,
time: Time<T>,
) -> Result<Rotation, RotationError>
fn try_composed_rotation( &self, provider: &P, time: Time<T>, ) -> Result<Rotation, RotationError>
Computes the composed rotation at the given time using the provider.