forked from M-Labs/nalgebra
6 lines
155 B
Rust
6 lines
155 B
Rust
pub trait Basis
|
|
{
|
|
fn canonical_basis() -> ~[Self]; // FIXME: is it the right pointer?
|
|
fn orthogonal_subspace_basis(&self) -> ~[Self];
|
|
}
|