summaryrefslogtreecommitdiffhomepage
path: root/logic/tracker.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-02-26 18:13:43 +0100
committerStanislaw Halik <sthalik@misaki.pl>2017-02-26 18:13:43 +0100
commitdbea153d81a85c387f9ef41bfeb95e92be11fd44 (patch)
tree96db9a2f38608e7539d9c862955719de835aa26c /logic/tracker.h
parent962ca4e983ca8ee9f034102c6b655cb15de0a94f (diff)
logic/tracker: remove unused code and struct membersopentrack-2.3.1+fix1
It belonged to the "experimental" center method that got removed already.
Diffstat (limited to 'logic/tracker.h')
-rw-r--r--logic/tracker.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/logic/tracker.h b/logic/tracker.h
index 4a5bdf50..6ba5dc70 100644
--- a/logic/tracker.h
+++ b/logic/tracker.h
@@ -74,12 +74,11 @@ private:
struct state
{
- rmat center_yaw, center_pitch, center_roll;
rmat rot_center;
rmat camera;
- rmat rotation, ry, rp, rr;
+ rmat rotation;
- state() : center_yaw(rmat::eye()), center_pitch(rmat::eye()), center_roll(rmat::eye()), rot_center(rmat::eye())
+ state() : rot_center(rmat::eye())
{}
};