evian-math 0.0.1-rc.1

Math utilities in evian.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Math utilities & types.

#![no_std]

mod angle;
mod vec2;

pub mod curve;

pub use angle::{Angle, IntoAngle};
pub use vec2::Vec2;