-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1341 from tier4/RJD-1278/geometry-update
Rjd 1278/geometry update
- Loading branch information
Showing
25 changed files
with
959 additions
and
755 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,15 @@ | ||
add_subdirectory(vector3) | ||
add_subdirectory(src/intersection) | ||
add_subdirectory(src/polygon) | ||
add_subdirectory(src/quaternion) | ||
add_subdirectory(src/solver) | ||
add_subdirectory(src/spline) | ||
add_subdirectory(src/vector3) | ||
|
||
ament_add_gtest(test_bounding_box test_bounding_box.cpp) | ||
ament_add_gtest(test_catmull_rom_spline test_catmull_rom_spline.cpp) | ||
ament_add_gtest(test_catmull_rom_subspline test_catmull_rom_subspline.cpp) | ||
ament_add_gtest(test_collision test_collision.cpp) | ||
ament_add_gtest(test_distance test_distance.cpp) | ||
ament_add_gtest(test_hermite_curve test_hermite_curve.cpp) | ||
ament_add_gtest(test_polygon test_polygon.cpp) | ||
ament_add_gtest(test_polynomial_solver test_polynomial_solver.cpp) | ||
ament_add_gtest(test_transform test_transform.cpp) | ||
ament_add_gtest(test_intersection test_intersection.cpp) | ||
ament_add_gtest(test_line_segment test_line_segment.cpp) | ||
ament_add_gtest(test_quaternion test_quaternion.cpp) | ||
target_link_libraries(test_bounding_box geometry) | ||
target_link_libraries(test_catmull_rom_spline geometry) | ||
target_link_libraries(test_catmull_rom_subspline geometry) | ||
target_link_libraries(test_collision geometry) | ||
ament_add_gtest(test_distance src/test_distance.cpp) | ||
target_link_libraries(test_distance geometry) | ||
target_link_libraries(test_hermite_curve geometry) | ||
target_link_libraries(test_polygon geometry) | ||
target_link_libraries(test_polynomial_solver geometry) | ||
|
||
ament_add_gtest(test_bounding_box src/test_bounding_box.cpp) | ||
target_link_libraries(test_bounding_box geometry) | ||
|
||
ament_add_gtest(test_transform src/test_transform.cpp) | ||
target_link_libraries(test_transform geometry) | ||
target_link_libraries(test_intersection geometry) | ||
target_link_libraries(test_line_segment geometry) | ||
target_link_libraries(test_quaternion geometry) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ament_add_gtest(test_collision test_collision.cpp) | ||
target_link_libraries(test_collision geometry) | ||
|
||
ament_add_gtest(test_intersection test_intersection.cpp) | ||
target_link_libraries(test_intersection geometry) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ament_add_gtest(test_line_segment test_line_segment.cpp) | ||
target_link_libraries(test_line_segment geometry) | ||
|
||
ament_add_gtest(test_polygon test_polygon.cpp) | ||
target_link_libraries(test_polygon geometry) |
Oops, something went wrong.