代码拉取完成,页面将自动刷新
同步操作将从 NewBee955/SatelliteSimulator 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。