ppoint.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // ppoint.h
- //=====================================
- #ifndef HEADER_PPOINT
- #define HEADER_PPOINT
- class PPoint{
- double x, y; //直角坐标抑或极坐标
- public:
- void set(double ix, double iy); //设置坐标
- double xOffset(); //直角坐标x分量
- double yOffset(); //直角坐标y分量
- double angle(); //极坐标弧角
- double radius(); //极坐标半径
- };//===================================
- #endif // HEADER_PPOINT