mirror of
https://github.com/modelec/odo_STM32.git
synced 2026-01-19 00:37:33 +01:00
7 lines
178 B
C++
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) {
|
|
}
|