求解機器人場上固定點

根據已知的兩個固定點肯定機器人的位置 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) { }
相關文章
相關標籤/搜索