burbomath 0.0.1

Burbokop's rust math library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![deny(warnings)]
#![no_std]

#[cfg(all(feature = "std", feature = "libm"))]
compile_error!("Features 'std' and 'libm' are mutually exclusive.");

#[cfg(feature = "std")]
extern crate std;

mod math;
pub use math::*;

pub mod camera;
pub mod physics;
pub mod range;

pub use burbomath_macro::*;