rinia 0.0.4

Portable scalar abstractions for game and simulation math.
Documentation
1
2
3
4
5
6
7
8
9
use crate::scalar::macros::{impl_from_scalar_for_all, with_all_scalar_types};

macro_rules! impl_from_scalar_matrix_for_all_types {
	($($ty:ty),+ $(,)?) => {
		impl_from_scalar_for_all!([$($ty),+]);
	};
}

with_all_scalar_types!(impl_from_scalar_matrix_for_all_types);