代码拉取完成,页面将自动刷新
同步操作将从 NewBee955/SatelliteSimulator 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include <PointCart.h>
PointCart::PointCart(const double& x, const double& y, const double& z)
{
m_x = x;
m_y = y;
m_z = z;
}
PointCart::PointCart(const Point& p)
{
m_x = p.getX();
m_y = p.getY();
m_z = p.getZ();
}
PointCart::~PointCart()
{
}
PointCart PointCart::operator=(const Point& p)
{
m_x = p.getX();
m_y = p.getY();
m_z = p.getZ();
return *this;
}
PointCart& PointCart::operator+=(const Point& p)
{
m_x += p.getX();
m_y += p.getY();
m_z += p.getZ();
return *this;
}
PointCart& PointCart::operator-=(const Point& p)
{
m_x -= p.getX();
m_y -= p.getY();
m_z -= p.getZ();
return *this;
}
PointCart operator+(const PointCart& a, const Point& b)
{
PointCart copy(a);
copy+=b;
return copy;
}
PointCart operator-(const PointCart& a, const Point& b)
{
PointCart copy(a);
copy-=b;
return copy;
}
double PointCart::getR() const
{
return std::sqrt(m_x*m_x + m_y*m_y + m_z*m_z);
}
double PointCart::getTheta() const
{
if (m_x > 0.0 && m_y >= 0.0)
return std::atan(m_y/m_x);
if (m_x == 0.0 && m_y > 0.0)
return Constants::pi / 2.0;
if (m_x < 0.0)
return Constants::pi + std::atan(m_y/m_x);
if (m_x == 0.0 && m_y < 0.0)
return 3.0 * Constants::pi / 2.0;
if (m_x > 0.0 && m_y < 0.0)
return Constants::twopi + std::atan(m_y/m_x);
return 0.0;
}
double PointCart::getPhi() const
{
// TODO
return 0.0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。