RPiPico-Holonome2023/Geometrie.h

15 lines
179 B
C

#ifndef GEOMETRIE_H
#define GEOMETRIE_H
#ifndef M_PI
#define M_PI (3.14159265358979323846)
#endif
struct position_t{
double x_mm, y_mm;
double angle_radian;
};
#endif