Skip to content
Snippets Groups Projects
Commit 1fba3567 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Fix missing initializer for new member

parent 8a59ce3f
No related branches found
No related tags found
1 merge request!58Flatten robots in bullet simulation
......@@ -209,10 +209,15 @@ namespace armarx
{"PriorKnowledgeData"}, obj.getFilename()),
obj.getFilename())},
.instance = "", // TODO(fabian.reister):
.config = {.timestamp = timestamp,
.globalPose = Eigen::Affine3f(obj.getRootNode()->getGlobalPose()),
.jointMap = obj.getJointValues()},
.timestamp = timestamp};
.config =
{
.timestamp = timestamp,
.globalPose = Eigen::Affine3f(obj.getRootNode()->getGlobalPose()),
.jointMap = obj.getJointValues(),
.proprioception = std::nullopt,
},
.timestamp = timestamp,
};
}
void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment