Commit 46972902 authored by Alexander Bock's avatar Alexander Bock
Browse files

Fixing the Jenkins build

parent f532a352
Showing with 4 additions and 4 deletions
+4 -4
......@@ -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<std::string> aim;
std::string referenceFrame;
glm::dvec3 position = glm::dvec3(0.0);
glm::dvec3 position;
std::optional<glm::dvec3> up;
std::optional<double> yaw;
std::optional<double> 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<double> altitude;
};
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment