Files
odo_STM32/Core/Src/point.cpp
acki a16615e34a setup CubeMX project to use CLion
Convert to CMake project to use CLion
2025-09-27 18:16:29 +02:00

8 lines
179 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) {
}