rinia 0.0.9

Portable scalar abstractions for game and simulation math.
Documentation
1
2
3
4
5
6
7
8
9
macro_rules! impl_vector_core_traits {
    ($wrapper:ident<$scalar:ident : $bound:path>, $dim:expr) => {
        $crate::tuple::impl_scalar_tuple_traits!($wrapper<$scalar: $bound>, $dim);

        impl<$scalar> $crate::Vector for $wrapper<$scalar> where $scalar: $bound {}
    };
}

pub(crate) use impl_vector_core_traits;