miscmath 0.3.2

miscmath will be a collection of general math functions and linear algebra structures like vectors and matrices.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use miscmath::prelude::*;

fn main() {
    let x = Vec2::unit();
    dbg!(&x);

    let y = Vec2::new(&0.5, &7.2);
    dbg!(&y);
 
    dbg!(y == y);
}