File tree Expand file tree Collapse file tree 4 files changed +8
-0
lines changed
Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
66endif ()
77
88find_package (ament_cmake REQUIRED)
9+ find_package (ament_cmake_python REQUIRED)
910
1011include_directories (include )
1112
@@ -31,4 +32,6 @@ ament_export_dependencies()
3132ament_export_include_directories(include )
3233ament_export_libraries(${PROJECT_NAME} )
3334
35+ ament_python_install_package(${PROJECT_NAME} )
36+
3437ament_package()
Original file line number Diff line number Diff line change 88 <license >MIT</license >
99
1010 <buildtool_depend >ament_cmake</buildtool_depend >
11+ <buildtool_depend >ament_cmake_python</buildtool_depend >
1112
1213 <export >
1314 <build_type >ament_cmake</build_type >
Original file line number Diff line number Diff line change 1+ import numpy as np
2+
3+ def ssa (angle : float ) -> float :
4+ return (angle + np .pi ) % (2 * np .pi ) - np .pi
You can’t perform that action at this time.
0 commit comments