pub trait TryRotation<Origin, Target, T>{
type Error: Error + Send + Sync + 'static;
// Required method
fn try_rotation(
&self,
origin: Origin,
target: Target,
time: Time<T>,
) -> Result<Rotation, Self::Error>;
}Expand description
Computes the rotation from one reference frame to another at a given time.