-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
yunwoo
authored and
yunwoo
committed
May 18, 2024
1 parent
2e5dec2
commit b565a75
Showing
6 changed files
with
16 additions
and
27 deletions.
There are no files selected for viewing
15 changes: 6 additions & 9 deletions
15
larr_planner/include/larr_planner/type_manager/TypeManager.h
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,24 +1,21 @@ | ||
|
||
|
||
namespace larr_planner{ | ||
struct Position{ | ||
namespace larr_planner { | ||
struct Position { | ||
double px; | ||
double py; | ||
double pz; | ||
}; | ||
struct Quaternion{ | ||
struct Quaternion { | ||
double qx; | ||
double qy; | ||
double qz; | ||
double qw; | ||
}; | ||
struct RobotState { | ||
double t_sec{0.0}; | ||
Position pos{0.0,0.0,0.0}; | ||
Quaternion orientation{0.0,0.0,0.0,1.0}; | ||
|
||
Position pos{0.0, 0.0, 0.0}; | ||
Quaternion orientation{0.0, 0.0, 0.0, 1.0}; | ||
}; | ||
|
||
|
||
|
||
} | ||
} // namespace larr_planner |
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 |
---|---|---|
@@ -1,3 +1 @@ | ||
#include "larr_planner/type_manager/TypeManager.h" | ||
|
||
|
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