1 Star 1 Fork 1

loading/SatelliteSimulator

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

搜索帮助