Skip to content
Snippets Groups Projects
Commit fdc9aa97 authored by Fabian Reister's avatar Fabian Reister
Browse files

scene: no longer needing thread-safe version

parent ad924945
No related branches found
No related tags found
1 merge request!25RT controller and simplification
......@@ -66,6 +66,8 @@ namespace armarx::navigation::core
class Trajectory
{
public:
Trajectory() = default;
Trajectory(const std::vector<TrajectoryPoint>& points) : pts(points)
{
}
......
......@@ -78,18 +78,14 @@ namespace armarx::navigation::core
struct Scene
{
mutable std::mutex staticSceneMtx;
std::optional<core::StaticScene> staticScene = std::nullopt;
mutable std::mutex dynamicSceneMtx;
std::optional<core::DynamicScene> dynamicScene = std::nullopt;
// TopologicMapPtr topologicMap;
VirtualRobot::RobotPtr robot;
mutable std::mutex platformVelocityMtx;
std::optional<core::Twist> platformVelocity;
mutable std::mutex graphMtx;
std::optional<core::SceneGraph> graph;
TimeServerInterface* timeServer;
......
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