The hpmcpp is a C++ wrapper library for the hpm library. This makes it more friendly to use in an object-oriented programming environment.
The software can be easily installed with invoking the following command.
mkdir build &&cd build
cmake ..
cmake --build .
make install#include<hpmcpp/HC.h>intmain(int argc, constchar** argv){
HCMatrix4x4 iden;
HCMatrix4x4 tra;
HCMatrix4x4 res;
iden.identity();
tra = HCMatrix4x4::translate(0,0,0);
res = iden * res;
std::cout << res;
returnEXIT_SUCCESS;
}The hpmcpp library only depends on the hpm library.
This project is licensed under the GPL+3 License - see the LICENSE file for details