Header-only C++ libraries containing controllers designed for Lie Groups.
The development of this library was moved to https://github.com/dic-iit/lie-group-controllers. This code may be outdated.
Click me if you are interested in the original project
git clone https://github.com/GiulioRomualdi/lie-group-controllers.git
cd lie-group-controllers
mkdir build && cd build
cmake ../
cmake --build .
[sudo] make install
If you want to enable tests set the BUILD_TESTING
option to ON
.
lie-groups-controllers provides native CMake support which allows the library to be easily used in CMake projects. Please add in your CMakeLists.txt
project(foo)
find_package(LieGroupsControllers REQUIRED)
add_executable(${PROJECT_NAME} src/foo.cpp)
target_link_libraries(${PROJECT_NAME} LieGroupsControllers::LieGroupsControllers)
All types of issues are welcome.