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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // ppoint.cpp
  3. // 直角坐标版本
  4. //=====================================
  5. #include"ppoint.h"
  6. #include<cmath>
  7. using namespace std;
  8. //-------------------------------------
  9. void PPoint::set(double ix, double iy){
  10.   x=ix;  y=iy;
  11. }//------------------------------------
  12. double PPoint::xOffset(){
  13.   return x;
  14. }//------------------------------------
  15. double PPoint::yOffset(){
  16.   return y;
  17. }//------------------------------------
  18. double PPoint::angle(){
  19.   return (180/3.14159)*atan2(y,x);
  20. }//------------------------------------
  21. double PPoint::radius(){
  22.   return sqrt(x*x+y*y);
  23. }//------------------------------------
  24.