RPiPico-Holonome2023/Geometrie.h

15 lines
179 B
C
Raw Normal View History

#ifndef GEOMETRIE_H
#define GEOMETRIE_H
2023-04-10 13:28:42 +00:00
#ifndef M_PI
#define M_PI (3.14159265358979323846)
#endif
struct position_t{
double x_mm, y_mm;
double angle_radian;
};
#endif