Trait efd::RotHint

source ·
pub trait RotHint<const D: usize>: AbstractRotation<f64, D> + Debug {
    // Required method
    fn matrix(self) -> SMatrix<f64, D, D>;
}
Expand description

Rotation hint for GeoVar.

Required Methods§

source

fn matrix(self) -> SMatrix<f64, D, D>

Get the rotation matrix.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl RotHint<2> for UnitComplex<f64>

source§

fn matrix(self) -> SMatrix<f64, 2, 2>

source§

impl RotHint<3> for UnitQuaternion<f64>

source§

fn matrix(self) -> SMatrix<f64, 3, 3>

source§

impl<const D: usize> RotHint<D> for Rotation<f64, D>

source§

fn matrix(self) -> SMatrix<f64, D, D>

Implementors§