glucose 0.1.5

multipurpose math and physics crate for my projects
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::Matrix;

impl<T: Default + Copy, const M: usize> From<(Vec<(T, T)>, Vec<T>, Vec<(T, T)>)>
    for Matrix<T, { M }, { 5 }>
{
    fn from(rhs: (Vec<(T, T)>, Vec<T>, Vec<(T, T)>)) -> Self {
        let mut mat = Self::default();
        mat
    }
}