QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgspoint3dbillboardmaterial.h
Go to the documentation of this file.
1/***************************************************************************
2 qgspoint3dbillboardmaterial.h
3 --------------------------------------
4 Date : Jul 2019
5 Copyright : (C) 2019 by Ismail Sunni
6 Email : imajimatika 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#ifndef QGSPOINT3DBILLBOARDMATERIAL_H
16#define QGSPOINT3DBILLBOARDMATERIAL_H
17
18#include <QObject>
19#include <Qt3DRender/QParameter>
20#include <Qt3DRender/QTexture>
21#include <Qt3DRender/QMaterial>
22
23#include "qgs3dmapsettings.h"
24
25#define SIP_NO_FILE
26
27class QgsMarkerSymbol;
28
37class QgsPoint3DBillboardMaterial : public Qt3DRender::QMaterial
38{
39 Q_OBJECT
40
41 public:
44
46 void setSize( const QSizeF size );
48 QSizeF size() const;
49
51 void setViewportSize( const QSizeF size );
53 QSizeF windowSize() const;
54
56 void useDefaultSymbol( const Qgs3DMapSettings &map, bool selected = false );
57
59 void setTexture2DFromSymbol( QgsMarkerSymbol *markerSymbol, const Qgs3DMapSettings &map, bool selected = false );
60
61 private:
63 void setTexture2DFromImage( QImage image, double size = 100 );
64
66 void setTexture2DFromTextureImage( Qt3DRender::QAbstractTextureImage *textureImage );
67
68 Qt3DRender::QParameter *mSize = nullptr;
69 Qt3DRender::QParameter *mViewportSize = nullptr;
70 Qt3DRender::QParameter *mTexture2D = nullptr;
71};
72
73
74#endif // QGSPOINT3DBILLBOARDMATERIAL_H
A marker symbol type, for rendering Point and MultiPoint geometries.
QSizeF windowSize() const
Returns the size of the view port.
~QgsPoint3DBillboardMaterial() override
QSizeF size() const
Returns the billboard size.
void useDefaultSymbol(const Qgs3DMapSettings &map, bool selected=false)
Set default symbol for the texture with map and selected parameter for rendering.
void setViewportSize(const QSizeF size)
Set the size of the view port.
void setSize(const QSizeF size)
Set the billboard size.
void setTexture2DFromSymbol(QgsMarkerSymbol *markerSymbol, const Qgs3DMapSettings &map, bool selected=false)
Set markerSymbol for the texture with map and selected parameter for rendering.