QGIS API Documentation 3.99.0-Master (d270888f95f)
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#include <Qt3DCore/QBuffer>
32#include <Qt3DRender/QGeometryRenderer>
33
34class QgsAABB;
35
36#define SIP_NO_FILE
37
44class Qgs3DWiredMesh : public Qt3DRender::QGeometryRenderer
45{
46 Q_OBJECT
47
48 public:
52 Qgs3DWiredMesh( Qt3DCore::QNode *parent = nullptr );
53 ~Qgs3DWiredMesh() override;
54
58 void setVertices( const QList<QVector3D> &vertices );
59
63 void setVertices( const QList<QgsAABB> &bboxes );
64
65 private:
66 Qt3DCore::QGeometry *mGeom = nullptr;
67 Qt3DCore::QAttribute *mPositionAttribute = nullptr;
68 Qt3DCore::QBuffer *mVertexBuffer = nullptr;
69};
70
72
73#endif // QGS3DWIREDMESH_P_H
Axis-aligned bounding box - in world coords.
Definition qgsaabb.h:35