nalgebra/src/traits/basis.rs

6 lines
155 B
Rust
Raw Normal View History

2013-05-19 01:04:03 +08:00
pub trait Basis
{
fn canonical_basis() -> ~[Self]; // FIXME: is it the right pointer?
fn orthogonal_subspace_basis(&self) -> ~[Self];
}