fix file cmake

This commit is contained in:
2025-12-02 10:40:36 +07:00
parent 28a7d14498
commit ff4856ab15
8 changed files with 130 additions and 36 deletions

View File

@@ -13,6 +13,8 @@ struct Pose
{
Point position;
Quaternion orientation;
Pose() = default;
};
} // namespace geometry_msgs

View File

@@ -12,7 +12,7 @@ struct Quaternion
double w;
// Constructor mặc định
Quaternion() : x(0.0), y(0.0), z(0.0), w(0.0) {}
Quaternion() : x(0.0), y(0.0), z(0.0), w(1.0) {}
// Constructor khởi tạo nhanh
Quaternion(double x_, double y_, double z_, double w_)