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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // ppoint.h
  3. //=====================================
  4. #ifndef HEADER_PPOINT
  5. #define HEADER_PPOINT
  6. class PPoint{
  7.   double x, y;                       //直角坐标抑或极坐标
  8. public:
  9.   PPoint(double ix, double iy);  //设置坐标
  10.   double xOffset();                 //直角坐标x分量
  11.   double yOffset();                 //直角坐标y分量
  12.   double angle();                   //极坐标弧角
  13.   double radius();                  //极坐标半径
  14. };//===================================
  15. #endif  // HEADER_PPOINT
  16.