QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgs3danimationsettings.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgs3danimationsettings.h
3  --------------------------------------
4  Date : July 2018
5  Copyright : (C) 2018 by Martin Dobias
6  Email : wonder dot sk at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGS3DANIMATIONSETTINGS_H
17 #define QGS3DANIMATIONSETTINGS_H
18 
19 #include "qgsvector3d.h"
20 #include "qgis_3d.h"
21 
22 #include <QEasingCurve>
23 #include <QVector>
24 
25 class QDomDocument;
26 class QDomElement;
28 
35 class _3D_EXPORT Qgs3DAnimationSettings
36 {
37  public:
40 
42  struct Keyframe
43  {
44  float time = 0;
46  float dist = 0;
47  float pitch = 0;
48  float yaw = 0;
49  };
50 
51  typedef QVector<Keyframe> Keyframes;
52 
54  void setKeyframes( const Keyframes &keyframes ) { mKeyframes = keyframes; }
56  Keyframes keyFrames() const { return mKeyframes; }
57 
59  void setEasingCurve( const QEasingCurve &curve ) { mEasingCurve = curve; }
61  QEasingCurve easingCurve() const { return mEasingCurve; }
62 
64  float duration() const;
65 
67  Keyframe interpolate( float time ) const;
68 
70  void readXml( const QDomElement &elem );
72  QDomElement writeXml( QDomDocument &doc ) const;
73 
74  private:
75  Keyframes mKeyframes;
76  QEasingCurve mEasingCurve;
77 };
78 
80 
81 #endif // QGS3DANIMATIONSETTINGS_H
The class is used as a container of context for various read/write operations on other objects...
3 Class for storage of 3D vectors similar to QVector3D, with the difference that it uses double preci...
Definition: qgsvector3d.h:31
QEasingCurve easingCurve() const
Returns the interpolation method for transitions of the camera.
void setKeyframes(const Keyframes &keyframes)
Configures keyframes of the animation. It is expected that the keyframes are ordered according to the...
Keyframes keyFrames() const
Returns keyframes of the animation.
QVector< Keyframe > Keyframes
Q_DECLARE_METATYPE(QgsMeshTimeSettings)
QgsVector3D point
Point towards which the camera is looking in 3D world coords.
3 Class that holds information about animation in 3D view.
void setEasingCurve(const QEasingCurve &curve)
Sets the interpolation method for transitions of the camera.