This repository has been archived on 2025-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
compLIB/server_v2/include/Odometry.hpp
2022-05-21 23:31:23 +02:00

24 lines
427 B
C++

#ifndef COMPLIB_SERVER_ODOMETRY_HPP
#define COMPLIB_SERVER_ODOMETRY_HPP
class Odometry {
public:
Odometry();
Odometry(double x_position, double y_position, double angular_orientation);
double get_x_position() const;
double get_y_position() const;
double get_angular_orientation() const;
private:
double x_position;
double y_position;
double angular_orientation;
};
#endif //COMPLIB_SERVER_ODOMETRY_HPP