求解机器人场上固定点

根据已知的两个固定点肯定机器人的位置 Point.h #ifndef POINT_H_ #define POINT_H_ #include <cmath> class Point { private: /* data */ double x, y; public: Point(double x = 0, double y = 0) : x(x), y(y) { }
相关文章
相关标签/搜索