add the rotation matrix inside the message of the TCP

This commit is contained in:
ackimixs
2024-04-10 13:17:05 +02:00
parent 3e6988bffa
commit 905cf41e1e

View File

@@ -27,6 +27,9 @@ void MyClient::handleMessage(const std::string& message)
res += tag.name + ",";
res += std::to_string(pos.first.at<double>(0, 0)) + ",";
res += std::to_string(pos.first.at<double>(2, 0)) + ",";
res += std::to_string(pos.second.at<double>(0, 0)) + ",";
res += std::to_string(pos.second.at<double>(1, 0)) + ",";
res += std::to_string(pos.second.at<double>(2, 0)) + ",";
}
}