QGIS API Documentation 3.39.0-Master (47f7b3a4989)
Loading...
Searching...
No Matches
qgs3dwiredmesh_p.h
Go to the documentation of this file.
1/***************************************************************************
2 qgs3dwiredmesh_p.h
3 --------------------------------------
4 Date : March 2022
5 Copyright : (C) 2022 by Jean Felder
6 Email : jean dot felder at oslandia 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 QGS3DWIREDMESH_P_H
17#define QGS3DWIREDMESH_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 <QVector3D>
31
32#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
33#include <Qt3DRender/QBuffer>
34#else
35#include <Qt3DCore/QBuffer>
36#endif
37#include <Qt3DRender/QGeometryRenderer>
38
39class QgsAABB;
40
41#define SIP_NO_FILE
42
49class Qgs3DWiredMesh : public Qt3DRender::QGeometryRenderer
50{
51 Q_OBJECT
52
53 public:
54
58 Qgs3DWiredMesh( Qt3DCore::QNode *parent = nullptr );
59 ~Qgs3DWiredMesh() override;
60
64 void setVertices( const QList<QVector3D> &vertices );
65
69 void setVertices( const QList<QgsAABB> &bboxes );
70
71 private:
72#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
73 Qt3DRender::QGeometry *mGeom = nullptr;
74 Qt3DRender::QAttribute *mPositionAttribute = nullptr;
75 Qt3DRender::QBuffer *mVertexBuffer = nullptr;
76#else
77 Qt3DCore::QGeometry *mGeom = nullptr;
78 Qt3DCore::QAttribute *mPositionAttribute = nullptr;
79 Qt3DCore::QBuffer *mVertexBuffer = nullptr;
80#endif
81};
82
84
85#endif // QGS3DWIREDMESH_P_H