QGIS API Documentation 3.99.0-Master (357b655ed83)
Loading...
Searching...
No Matches
qgslinevertexdata_p.h
Go to the documentation of this file.
1/***************************************************************************
2 qgslinevertexdata_p.h
3 --------------------------------------
4 Date : Apr 2019
5 Copyright : (C) 2019 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 QGSLINEVERTEXDATA_P_H
17#define QGSLINEVERTEXDATA_P_H
18
20
21//
22// W A R N I N G
23// -------------
24//
25// This file is not part of the QGIS API. It exists purely as an
26// implementation detail. This header file may change from version to
27// version without notice, or even be removed.
28//
29
30#include <QVector>
31#include <QVector3D>
32
33#define SIP_NO_FILE
34
35#include "qgis.h"
36#include "qgs3drendercontext.h"
37
38
39namespace Qt3DCore
40{
41 class QNode;
42 class QGeometry;
43} // namespace Qt3DCore
44
45class QgsLineString;
46
47
62struct QgsLineVertexData
63{
64 QVector<QVector3D> vertices;
65 QVector<unsigned int> indexes;
66 QByteArray materialDataDefined;
67
68 bool withAdjacency = false;
69
70 // extra info to calculate elevation
73 float baseHeight = 0;
74 Qgs3DRenderContext renderContext; // used for altitude clamping
75 QgsVector3D origin; // all coordinates are relative to this origin (e.g. center of the chunk)
76 bool geocentricCoordinates = false; // whether input coordinates are geocentric (i.e. Z can't be interpreted as elevation)
77
78 QgsLineVertexData();
79
80 void init( Qgis::AltitudeClamping clamping, Qgis::AltitudeBinding binding, float height, const Qgs3DRenderContext &renderContext, const QgsVector3D &chunkOrigin );
81
82 QByteArray createVertexBuffer();
83 QByteArray createIndexBuffer();
84 Qt3DCore::QGeometry *createGeometry( Qt3DCore::QNode *parent );
85
86 void addLineString( const QgsLineString &lineString, float extraHeightOffset = 0, bool closePolygon = false );
87 void addVerticalLines( const QgsLineString &lineString, float verticalLength, float extraHeightOffset = 0 );
88};
89
91
92#endif // QGSLINEVERTEXDATA_P_H
AltitudeClamping
Altitude clamping.
Definition qgis.h:4053
@ Absolute
Elevation is taken directly from feature and is independent of terrain height (final elevation = feat...
Definition qgis.h:4054
AltitudeBinding
Altitude binding.
Definition qgis.h:4066
@ Vertex
Clamp every vertex of feature.
Definition qgis.h:4067
Line string geometry type, with support for z-dimension and m-values.