Hides all planets but one for the doppler method visualisation.

This commit is contained in:
KarRei
2018-06-13 15:53:22 -04:00
parent 9a320ad02b
commit 7940fbc86e
5 changed files with 124 additions and 62 deletions
+12
View File
@@ -53,6 +53,18 @@ void ExoplanetsModule::setStarName(std::string starName) {
std::string ExoplanetsModule::getStarName() {
return _starName;
}
void ExoplanetsModule::setPlsy(std::vector<Exoplanet> plsy) {
_plsy = plsy;
}
std::vector<Exoplanet> ExoplanetsModule::getPlsy() {
return _plsy;
}
void ExoplanetsModule::setPlna(std::vector<std::string> plna) {
_plna = plna;
}
std::vector<std::string> ExoplanetsModule::getPlna() {
return _plna;
}
scripting::LuaLibrary ExoplanetsModule::luaLibrary() const {