diff --git a/include/openspace/scene/profile.h b/include/openspace/scene/profile.h index ed17b6c9a7..c8f2f8d6f4 100644 --- a/include/openspace/scene/profile.h +++ b/include/openspace/scene/profile.h @@ -101,7 +101,7 @@ public: Relative }; - Type type = Type::Absolute; + Type type; std::string value; }; @@ -111,7 +111,7 @@ public: std::string anchor; std::optional aim; std::string referenceFrame; - glm::dvec3 position = glm::dvec3(0.0); + glm::dvec3 position; std::optional up; std::optional yaw; std::optional pitch; @@ -121,8 +121,8 @@ public: static constexpr const char* Type = "goToGeo"; std::string anchor; - double latitude = 0.0; - double longitude = 0.0; + double latitude; + double longitude; std::optional altitude; };