VecMate
Lightweight, zero-dependency, type-agnostic library for vector math.
let mut position = ZERO;
let target = vec2;
let speed = 2.0;
let direction = .normalized;
position += direction * speed;
println!;
println!;
Why?
I didn't find any similar libraries, so I decided to create my own!
Contributing
Any pull-requests and issues are welcome!
Please remember that one of the goals of the library is to be dependency-free,
Therefore, any proposals that contain dependencies will be rejected.
Please adhere to the architecture and style of the project.
TODO
- More constants
- More functions
- 3D vectors
- 4D vectors