20 lines
369 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef ROBOTPOSE6D_H
#define ROBOTPOSE6D_H
/**
* @brief 机械臂当前六自由度位姿。
*
* X/Y/Z 的单位为毫米A/B/C 的单位为度A/B/C 的轴顺序由上层配置解释。
*/
struct RobotPose6D
{
double x = 0.0;
double y = 0.0;
double z = 0.0;
double a = 0.0;
double b = 0.0;
double c = 0.0;
};
#endif // ROBOTPOSE6D_H