From 86091b7687de20fd81f5c24d60de8a5b8fbaa3b5 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Tue, 24 Feb 2015 10:07:25 +0100 Subject: [PATCH] Have correct orientation of the solar system when performing coordinate system change --- src/rendering/renderengine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rendering/renderengine.cpp b/src/rendering/renderengine.cpp index a6cd0da604..804597694f 100644 --- a/src/rendering/renderengine.cpp +++ b/src/rendering/renderengine.cpp @@ -867,9 +867,9 @@ void RenderEngine::changeViewPoint(std::string origin) { ghoul::Dictionary solarDictionary = { { std::string("Type"), std::string("Spice") }, - { std::string("Body") , std::string("PLUTO BARYCENTER") }, + { std::string("Body") , std::string("SUN") }, { std::string("Reference"), std::string("ECLIPJ2000") }, - { std::string("Observer") , std::string("SUN") }, + { std::string("Observer") , std::string("PLUTO BARYCENTER") }, { std::string("Kernels") , ghoul::Dictionary() } }; ghoul::Dictionary t;