Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 383 Bytes

README.md

File metadata and controls

6 lines (5 loc) · 383 Bytes

VectorMath

A implementation of double-vector-math with vector2 & vector3, written to perform well for high-perf-applications

Why does this exist?

Most implementations of Vectors work with arrays in the background, which makes them perform quite poorly
This implementation uses structs which makes the code a bit more ugly but much better perfoming, its a compromise.