ruby-math 0.2.2

A simple 3D math library for games and graphics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(any(
    all(debug_assertions, feature = "debug-ruby-assert"),
    feature = "ruby-assert"
))]
macro_rules! ruby_assert {
    ($($arg: tt)*) => ( assert!($($arg)*); )
}

#[cfg(not(any(
    all(debug_assertions, feature = "debug-ruby-assert"),
    feature = "ruby-assert"
)))]
macro_rules! ruby_assert {
    ($($arg: tt)*) => {};
}