All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
InteriorsCameraConfiguration.h
1 // Copyright eeGeo Ltd (2012-2015), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 
7 namespace Eegeo
8 {
9  namespace Resources
10  {
11  namespace Interiors
12  {
14  {
16  : BuildingHorizontalScreenSpacePercentInPortrait(1.f)
17  , BuildingHorizontalScreenSpacePercentInLandscape(1.f)
18  , PositionUpdateThresholdDistanceSq(0.01f)
19  , ExpandedLookAtDistanceScale(1.f)
20  , ExpandedLookAtUpOffset(0.f)
21  , ExpandedLookAtRightOffset(0.f)
22  {
23  }
24 
25  float BuildingHorizontalScreenSpacePercentInPortrait;
26  float BuildingHorizontalScreenSpacePercentInLandscape;
27  double PositionUpdateThresholdDistanceSq;
28  float ExpandedLookAtDistanceScale;
29  float ExpandedLookAtUpOffset;
30  float ExpandedLookAtRightOffset;
31  };
32  }
33  }
34 }