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