hektor 0.0.3

A library for hekkin vectors.
Documentation
use super::*;

#[path = "free_func_traits.rs"]
pub mod free_func_traits;
use free_func_traits::*;

/// Per-component absolute value.
///
/// Main types this works with:
/// * floats and integers
/// * any `VecN`
/// * any `MatN`
pub fn abs<T: CanAbs>(t: T) -> T {
  t.abs()
}