Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
path_point.cpp
Go to the documentation of this file.
2
4
5PathPoint::PathPoint(Position position, double orientation, double ideal_velocity)
6 : position(position), orientation(orientation), ideal_velocity(ideal_velocity) {}
7
8PathPoint::PathPoint(double x, double y, double orientation, double ideal_velocity)
9 : position(x, y), orientation(orientation), ideal_velocity(ideal_velocity) {}
10
11} // namespace common_lib::structures