Files
odo_STM32/Core/Src/point.cpp
2025-09-30 18:56:46 +02:00

7 lines
178 B
C++

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