Library for 2D/3D vector, matrix, and math operations in C++.
Library of 2D and 3D vector, matrix, and math operations
$ clang++ -I$(brew --prefix imath)/include myprogram.cpp -L$(brew --prefix imath)/lib -lImath -o myprogram$ brew info imath$ echo 'find_package(Imath REQUIRED)' >> CMakeLists.txt && echo 'target_link_libraries(myapp Imath::Imath)' >> CMakeLists.txt$ g++ -I$(brew --prefix imath)/include graphics.cpp -L$(brew --prefix imath)/lib -lImath -o graphics_app$ ls $(brew --prefix imath)/include/Imath/