summaryrefslogtreecommitdiffhomepage
path: root/logic/pipeline.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'logic/pipeline.hpp')
-rw-r--r--logic/pipeline.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/logic/pipeline.hpp b/logic/pipeline.hpp
index 5db2a753..79042727 100644
--- a/logic/pipeline.hpp
+++ b/logic/pipeline.hpp
@@ -101,19 +101,19 @@ private:
// the logger while the tracker is running.
TrackLogger& logger;
- struct state
+ struct state_
{
rmat inv_rot_center;
rmat rotation;
+ euler_t t_center;
- state() : inv_rot_center(rmat::eye())
+ state_() : inv_rot_center(rmat::eye())
{}
};
reltrans rel;
- state rotation;
- euler_t t_center;
+ state_ state;
ns backlog_time = ns(0);