logo
pub trait AsNalgebraNonCanonicalInterface<T> where
    T: Copy,
    Self: Copy
{ fn clone_as_nalgebra(&self) -> T; }
Expand description

Trait for non-canonical structure to clone math data structures of other math libs as their analogs in nalgebra to use operations of nalgebra.

Required Methods

Clone this data structure as nalgebra analog to use its operations.

Implementors