rework strat

This commit is contained in:
ackimixs
2024-04-25 00:17:48 +02:00
parent aa1cea5a62
commit 0c65575c68
5 changed files with 486 additions and 443 deletions

View File

@@ -87,19 +87,3 @@ void ArucoTag::find() {
int ArucoTag::getNbFind() const {
return nbFind;
}
FlowerAruco::FlowerAruco() : tag(nullptr), _realPos({0, 0}) {
}
FlowerAruco::FlowerAruco(ArucoTag *tag) : tag(tag), _realPos({0, 0}) {
}
ArucoTag *FlowerAruco::getTag() const {
return tag;
}
std::array<float, 2> FlowerAruco::getPos() const {
return _realPos;
}