Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pac48 authored Nov 10, 2024
1 parent 917bafd commit e210484
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,23 @@
Compile a URDF into an optimized C++ library for fast forward kinematics.

Slides from CPPCon 2024 can be found [here](https://pac48.github.io/cpp-con-2024/)

# Usage

```cmake
include(FetchContent)
FetchContent_Declare(
fast_forward_kinematics
GIT_REPOSITORY https://github.com/pac48/fast_robot_kinematics.git
GIT_TAG main
)
FetchContent_MakeAvailable(fast_forward_kinematics)
set(URDF_FILE ${CMAKE_SOURCE_DIR}/urdf/robot.urdf)
set(ROOT base_link)
set(TIP grasp_link)
generate_fast_forward_kinematics_library(fast_forward_kinematics_library_{robots}
URDF_FILE ${URDF_FILE}
ROOT_LINK ${ROOT}
TIP_LINK ${TIP})
```

0 comments on commit e210484

Please sign in to comment.