1 Star 0 Fork 1

NewBee955/SatelliteSimulator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
PointPol.h 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
Florent Forest 提交于 2017-04-08 12:13 . Code commit
#ifndef POINTPOL_H
#define POINTPOL_H
#include <Point.h>
#include <PointCart.h>
#include <Constants.h>
#include <cmath>
class PointPol : public Point
{
public:
PointPol(double r = 0.0, double theta = 0.0, double phi = 0.0);
PointPol(const Point& p);
virtual ~PointPol();
PointPol operator=(const Point& p);
bool operator==(const Point& p);
PointPol& operator+=(const Point& p);
PointPol& operator-=(const Point& p);
double getR() const { return m_r; }
void setR(const double& val) { m_r = val; }
double getTheta() const { return m_theta; }
void setTheta(const double& val) { m_theta = val; }
double getPhi() const { return m_phi; }
void setPhi(const double& val) { m_phi = val; }
double getX() const;
double getY() const;
double getZ() const;
private:
double m_r;
double m_theta;
double m_phi;
};
PointPol operator+(const PointPol& a, const Point& b);
PointPol operator-(const PointPol& a, const Point& b);
#endif // POINTPOL_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yyyyny/SatelliteSimulator.git
[email protected]:yyyyny/SatelliteSimulator.git
yyyyny
SatelliteSimulator
SatelliteSimulator
master

搜索帮助