Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
pose.cpp
Go to the documentation of this file.
2
4
5Pose::Pose(Position position, double orientation, double orientation_noise, rclcpp::Time timestamp)
6 : position(position),
7 orientation(orientation),
8 orientation_noise(orientation_noise),
9 timestamp(timestamp) {}
10
11Pose::Pose(double x, double y, double theta, double x_noise, double y_noise, double theta_noise,
12 rclcpp::Time timestamp)
13 : position(x, y, x_noise, y_noise, timestamp),
14 orientation(theta),
15 orientation_noise(theta_noise),
16 timestamp(timestamp) {}
17
18} // namespace common_lib::structures