matrix_engine 0.2.4

a small game engine developed by drmatrix
Documentation
1
2
3
4
5
use std::ops::Neg;

pub trait Number: num_traits::Num + Clone + Neg<Output = Self> + 'static {}

impl<T: num_traits::Num + Clone + Neg<Output = T> + 'static> Number for T {}