flo_curves 0.8.0

Library for manipulating Bezier curves
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#[cfg(not(any(test, feature="extra_checks")))]
macro_rules! test_assert {
    ($cond:expr) => ({  });
    ($cond:expr,) => ({  });
    ($cond:expr, $($arg:tt)+) => ({  });
}

#[cfg(any(test, feature="extra_checks"))]
macro_rules! test_assert {
    ($cond:expr) => ({ assert!($cond); });
    ($cond:expr,) => ({ assert!($cond); });
    ($cond:expr, $($arg:tt)+) => ({ assert!($cond, $($arg)*); });
}