nalgebra/src/traits/mat_cast.rs

8 lines
211 B
Rust
Raw Normal View History

2013-07-24 22:50:40 +08:00
/// Trait of matrices which can be converted to another matrix. Used to change the type of a matrix
/// components.
pub trait MatCast<M>
2013-07-24 22:50:40 +08:00
{
2013-08-05 15:44:56 +08:00
/// Converts `m` to have the type `M`.
fn from(m: Self) -> M;
2013-07-24 22:50:40 +08:00
}