Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
vehicle_state.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <utility>
4
6
8
11 double velocity_x = 0.0;
12 double velocity_y = 0.0;
13 double rotational_velocity = 0.0;
14
15 VehicleState() = default;
17 VehicleState(double x, double y, double theta, double velocity_x, double velocity_y,
18 double rotational_velocity);
19};
20
21} // namespace common_lib::structures
Struct for pose representation.
Definition pose.hpp:13