ppoint.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // ppoint.cpp
- // 直角坐标版本
- //=====================================
- #include"ppoint.h"
- #include<cmath>
- using namespace std;
- //-------------------------------------
- void PPoint::set(double ix, double iy){
- x=ix; y=iy;
- }//------------------------------------
- double PPoint::xOffset(){
- return x;
- }//------------------------------------
- double PPoint::yOffset(){
- return y;
- }//------------------------------------
- double PPoint::angle(){
- return (180/3.14159)*atan2(y,x);
- }//------------------------------------
- double PPoint::radius(){
- return sqrt(x*x+y*y);
- }//------------------------------------