point.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // point.cpp
  3. //=====================================
  4. #include"point.h"
  5. #include<cmath>
  6. using namespace std;
  7. //-------------------------------------
  8. double Point::PI = 3.14159265;
  9. //-------------------------------------
  10. Point::Point(double a, double b): x(a), y(b){}
  11. double Point::xOffset()const{ return x; }
  12. double Point::yOffset()const{ return y; }
  13. double Point::angle()const{ return (180/PI)*atan2(y, x); }
  14. double Point::radius()const{ return sqrt(x*x + y*y); }
  15. void Point::moveTo(double a, double b){ x = a, y = b; }
  16. Point Point::operator+(const Point& d)const{return Point(x+d.x, y+d.y);}
  17. Point& Point::operator+=(const Point& d){
  18.   x+=d.x; y+=d.y;
  19.   return *this;
  20. }//------------------------------------
  21.