summaryrefslogtreecommitdiffhomepage
path: root/logic/pipeline.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-06-22 13:02:34 +0200
committerStanislaw Halik <sthalik@misaki.pl>2018-06-26 23:01:53 +0200
commitd03152b3fe03c7234134b3b06b7facc1607c7609 (patch)
treea9504a79baea50bb46805d44a6718ec59a38a36f /logic/pipeline.hpp
parent3cf0308c6487ae917b064e49569e5c9684d61978 (diff)
logic/pipeline: remove rest of scaled_rotation
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);