Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
pose.cpp
Go to the documentation of this file.
1
#include "
common_lib/structures/pose.hpp
"
2
3
namespace
common_lib::structures
{
4
5
Pose::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
11
Pose::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
common_lib::structures
Definition
cone.hpp:10
pose.hpp
common_lib::structures::Pose::Pose
Pose()=default
common_lib::structures::Position
Definition
position.hpp:7
src
common_lib
src
structures
pose.cpp
Generated by
1.9.8