mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-28 14:59:31 -05:00
More GLM initialization fixes
This commit is contained in:
@@ -372,7 +372,7 @@ void RenderableFieldlines::loadSeedPointsFromTable() {
|
||||
ghoul::Dictionary seedpointsDictionary;
|
||||
_seedPointsInfo.getValue(KeySeedPointsTable, seedpointsDictionary);
|
||||
for (const std::string& index : seedpointsDictionary.keys()) {
|
||||
glm::vec3 seedPos;
|
||||
glm::vec3 seedPos = glm::vec3(0.f);
|
||||
_fieldlineInfo.getValue(std::string(KeySeedPointsTable) + "." + index, seedPos);
|
||||
_seedPoints.push_back(seedPos);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user