Files
odo_STM32/Core/Src/point.cpp
2026-03-09 19:17:35 +01:00

7 lines
225 B
C++

#include "point.h"
Point::Point(uint8_t id, StatePoint state, float x, float y, float theta, bool active, bool isAtPosition) : id(id), state(state), x(x), y(y), theta(theta), active(active), isAtPosition(isAtPosition) {
}