1 Star 0 Fork 1

NewBee955/SatelliteSimulator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Planet.cpp 614 Bytes
一键复制 编辑 原始数据 按行查看 历史
Florent Forest 提交于 2017-04-08 12:13 . Code commit
#include "Planet.h"
Planet::Planet(double mu, double radius, double day, const std::string& name, const std::string &imgPath)
{
m_mu = mu;
m_radius = radius;
m_name = name;
m_imgPath = imgPath;
m_day = day;
}
Planet::~Planet()
{
}
const std::string Planet::toString(void) const
{
std::stringstream output;
output << "Name: " << m_name << std::endl;
output << "Radius: " << m_radius << std::endl;
output << "Mu: " << m_mu << std::endl;
output << "Day: " << m_day << std::endl;
output << "ImgPath: " << m_imgPath << std::endl;
return output.str();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yyyyny/SatelliteSimulator.git
[email protected]:yyyyny/SatelliteSimulator.git
yyyyny
SatelliteSimulator
SatelliteSimulator
master

搜索帮助