QGIS API Documentation  3.14.0-Pi (9f7028fd23)
qgs3dtypes.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgs3dtypes.h
3  --------------------------------------
4  Date : October 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 QGS3DTYPES_H
17 #define QGS3DTYPES_H
18 
19 #include "qgis_3d.h"
20 
30 class _3D_EXPORT Qgs3DTypes
31 {
32  public:
34  enum AltitudeClamping
35  {
36  AltClampAbsolute,
37  AltClampRelative,
38  AltClampTerrain,
39  };
40 
42  enum AltitudeBinding
43  {
44  AltBindVertex,
45  AltBindCentroid,
46  };
47 
49  enum CullingMode
50  {
51  NoCulling,
52  Front,
53  Back,
54  FrontAndBack
55  };
56 };
57 
58 #endif // QGS3DTYPES_H
Qgs3DTypes::AltitudeBinding
AltitudeBinding
how to handle clamping of vertices of individual features
Definition: qgs3dtypes.h:55
Qgs3DTypes::CullingMode
CullingMode
Triangle culling mode.
Definition: qgs3dtypes.h:62
Qgs3DTypes::AltitudeClamping
AltitudeClamping
how to handle altitude of vector features
Definition: qgs3dtypes.h:47
Qgs3DTypes
Definition: qgs3dtypes.h:30