16 #ifndef QGSCAMERAPOSE_H
17 #define QGSCAMERAPOSE_H
58 void setDistanceFromCenterPoint(
float distance );
63 void setPitchAngle(
float pitch );
71 void updateCamera( Qt3DRender::QCamera *camera )
SIP_SKIP;
74 QDomElement writeXml( QDomDocument &doc )
const;
76 void readXml(
const QDomElement &elem );
81 return mCenterPoint == other.mCenterPoint &&
82 mDistanceFromCenterPoint == other.mDistanceFromCenterPoint &&
83 mPitchAngle == other.mPitchAngle &&
84 mHeadingAngle == other.mHeadingAngle;
95 float mDistanceFromCenterPoint = 1000;
97 float mPitchAngle = 0;
99 float mHeadingAngle = 0;
103 #endif // QGSCAMERAPOSE_H