Skip to content

Commit

Permalink
Add SIMD quaternion, add more tests, bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cfnptr committed Mar 7, 2025
1 parent 882fec1 commit 7e23038
Show file tree
Hide file tree
Showing 34 changed files with 2,730 additions and 1,376 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Created by https://www.toptal.com/developers/gitignore/api/c,c++,cmake,macos,linux,windows
# Edit at https://www.toptal.com/developers/gitignore?templates=c,c++,cmake,macos,linux,windows

### Common ###
.vs/
.vscode/
out/
build/

### C ###
# Prerequisites
*.d
Expand Down
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,12 @@ if(MATH_BUILD_TESTS)
add_executable(TestMathMatrix tests/test-matrix.cpp)
target_link_libraries(TestMathMatrix PUBLIC math-static)
add_test(NAME TestMathMatrix COMMAND TestMathMatrix)

add_executable(TestMathQuaternion tests/test-quaternion.cpp)
target_link_libraries(TestMathQuaternion PUBLIC math-static)
add_test(NAME TestMathQuaternion COMMAND TestMathQuaternion)

add_executable(TestMathContainers tests/test-containers.cpp)
target_link_libraries(TestMathContainers PUBLIC math-static)
add_test(NAME TestMathContainers COMMAND TestMathContainers)
endif()
Loading

0 comments on commit 7e23038

Please sign in to comment.