tiny_lib 0.0.2

A tiny library, that implements some useful math functions to be used in no_std projects.
1
2
3
4
5
6
7
8
9
10
11
#![crate_type="lib"]
#![feature(const_fn)]
#![feature(const_if_match)]
#![feature(clamp)]
#![feature(tau_constant)]
#![feature(test)]
#![no_std]

pub mod util;
pub mod trig;
pub mod vector;