forked from M-Labs/nalgebra
40 lines
986 B
Rust
40 lines
986 B
Rust
|
use na::{Real, DefaultAllocator, DimName};
|
||
|
use aliases::Vec;
|
||
|
use traits::Alloc;
|
||
|
|
||
|
|
||
|
pub fn exp<N: Real, D: DimName>(v: &Vec<N, D>) -> Vec<N, D>
|
||
|
where DefaultAllocator: Alloc<N, D> {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
|
||
|
pub fn exp2<N: Real, D: DimName>(v: &Vec<N, D>) -> Vec<N, D>
|
||
|
where DefaultAllocator: Alloc<N, D> {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
|
||
|
pub fn inversesqrt<N: Real, D: DimName>(v: &Vec<N, D>) -> Vec<N, D>
|
||
|
where DefaultAllocator: Alloc<N, D> {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
|
||
|
pub fn log<N: Real, D: DimName>(v: &Vec<N, D>) -> Vec<N, D>
|
||
|
where DefaultAllocator: Alloc<N, D> {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
|
||
|
pub fn log2<N: Real, D: DimName>(v: &Vec<N, D>) -> Vec<N, D>
|
||
|
where DefaultAllocator: Alloc<N, D> {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
|
||
|
pub fn pow<N: Real, D: DimName>(base: &Vec<N, D>, exponent: &Vec<N, D>)
|
||
|
where DefaultAllocator: Alloc<N, D> {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
|
||
|
pub fn sqrt<N: Real, D: DimName>(v: &Vec<N, D>) -> Vec<N, D>
|
||
|
where DefaultAllocator: Alloc<N, D> {
|
||
|
unimplemented!()
|
||
|
}
|