Trait TryRotateTo

Source
pub trait TryRotateTo<T: TimeScale, R: ReferenceFrame, P> {
    type Error;

    // Required method
    fn try_rotation(
        &self,
        frame: R,
        time: Time<T>,
        provider: Option<&P>,
    ) -> Result<Rotation, Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn try_rotation( &self, frame: R, time: Time<T>, provider: Option<&P>, ) -> Result<Rotation, Self::Error>

Implementors§