Skip to content

Files

Latest commit

b2c4e02 · May 1, 2021

History

History
13 lines (12 loc) · 442 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 442 Bytes

CPP-React-Math

A templated header-only C++ vector and matrix math library. Simply include the header files and start using types such as vec3f, mat4f and quatf.

Build example and unit tests

Build a simple example implementing a 'transform' class and the unit tests.

git clone https://git.vfk.io/gary/CPP-React-Math.git
mkdir build && cd build
cmake ../
make
./tests/test_unit # run unit tests
./example/example # run example