nalgebra/src/traits/basis.rs
2013-05-18 17:04:03 +00:00

6 lines
155 B
Rust

pub trait Basis
{
fn canonical_basis() -> ~[Self]; // FIXME: is it the right pointer?
fn orthogonal_subspace_basis(&self) -> ~[Self];
}