摘要:
class Vector2d { public: Vector2d():x(0.0),y(0.0){}; Vector2d(double _x,double _y) :x(_x),y(_y){} Vector2d(const Vector2d& _vect2d) { x = _vect2d.x; y = _vect2d.y; } double dotProduct... 阅读全文
posted @ 2016-05-02 21:20
RedLight
阅读(609)
评论(0)
推荐(0)
浙公网安备 33010602011771号