QGIS API Documentation 4.1.0-Master (31622b25bb0)
Loading...
Searching...
No Matches
qgspointcloudrenderer.h
Go to the documentation of this file.
1/***************************************************************************
2 qgspointcloudrenderer.h
3 --------------------
4 begin : October 2020
5 copyright : (C) 2020 by Peter Petrik
6 email : zilolv at gmail dot com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18#ifndef QGSPOINTCLOUDRENDERER_H
19#define QGSPOINTCLOUDRENDERER_H
20
21#include "qgis_core.h"
22#include "qgis_sip.h"
25#include "qgsrendercontext.h"
26#include "qgsstyle.h"
27#include "qgsvector3d.h"
28
29#include <QString>
30#include <QStringList>
31
32using namespace Qt::StringLiterals;
33
38class QgsElevationMap;
40
50{
51 public:
65
68
72 QgsRenderContext &renderContext() { return mRenderContext; }
73
78 const QgsRenderContext &renderContext() const SIP_SKIP { return mRenderContext; }
79
83 QgsVector3D scale() const { return mScale; }
84
89 void setScale( const QgsVector3D &scale ) { mScale = scale; }
90
94 QgsVector3D offset() const { return mOffset; }
95
100 void setOffset( const QgsVector3D &offset ) { mOffset = offset; }
101
105 long pointsRendered() const;
106
113 void incrementPointsRendered( long count );
114
120 QgsPointCloudAttributeCollection attributes() const { return mAttributes; }
121
127 void setAttributes( const QgsPointCloudAttributeCollection &attributes );
128
132 int pointRecordSize() const { return mPointRecordSize; }
133
140 int xOffset() const { return mXOffset; }
141
148 int yOffset() const { return mYOffset; }
149
156 int zOffset() const { return mZOffset; }
157
163 double zValueScale() const { return mZValueScale; }
164
170 double zValueFixedOffset() const { return mZValueFixedOffset; }
171
177 QgsFeedback *feedback() const { return mFeedback; }
178
179#ifndef SIP_RUN
180
185 template<typename T> static void getAttribute( const char *data, std::size_t offset, QgsPointCloudAttribute::DataType type, T &value )
186 {
187 switch ( type )
188 {
190 value = *reinterpret_cast< const unsigned char * >( data + offset );
191 return;
193 value = *( data + offset );
194 return;
195
197 value = *reinterpret_cast< const quint32 * >( data + offset );
198 return;
200 value = *reinterpret_cast< const qint32 * >( data + offset );
201 return;
202
204 value = *reinterpret_cast< const quint64 * >( data + offset );
205 return;
207 value = *reinterpret_cast< const qint64 * >( data + offset );
208 return;
209
211 value = *reinterpret_cast< const short * >( data + offset );
212 return;
213
215 value = *reinterpret_cast< const unsigned short * >( data + offset );
216 return;
217
219 value = *reinterpret_cast< const float * >( data + offset );
220 return;
221
223 value = *reinterpret_cast< const double * >( data + offset );
224 return;
225 }
226 }
227#endif
228
229#ifndef SIP_RUN // this is only meant for low-level rendering in C++ code
230
238 {
239 std::vector<double> points;
240 std::vector<QRgb> colors;
241 std::vector<float> elevations;
242 };
243
248 TriangulationData &triangulationData() { return mTriangulationData; }
249#endif
250
251 private:
252#ifdef SIP_RUN
254#endif
255
256 QgsRenderContext &mRenderContext;
257 QgsVector3D mScale;
258 QgsVector3D mOffset;
259 long mPointsRendered = 0;
261 int mPointRecordSize = 0;
262 int mXOffset = 0;
263 int mYOffset = 0;
264 int mZOffset = 0;
265 double mZValueScale = 1.0;
266 double mZValueFixedOffset = 0;
267
268 QgsFeedback *mFeedback = nullptr;
269
270 TriangulationData mTriangulationData;
271};
272
273#ifndef SIP_RUN
274
285{
286 public:
288
292 virtual QSet< QString > usedAttributes() const = 0;
293
299 virtual bool prepareBlock( const QgsPointCloudBlock *block ) = 0;
300
308 virtual QColor pointColor( const QgsPointCloudBlock *block, int i, double z ) = 0;
309};
310
311#endif
312
313
322class CORE_EXPORT QgsPointCloudRenderer
323{
324#ifdef SIP_RUN
326
327 const QString type = sipCpp->type();
328
329 if ( type == "rgb"_L1 )
330 sipType = sipType_QgsPointCloudRgbRenderer;
331 else if ( type == "ramp"_L1 )
332 sipType = sipType_QgsPointCloudAttributeByRampRenderer;
333 else if ( type == "classified"_L1 )
334 sipType = sipType_QgsPointCloudClassifiedRenderer;
335 else if ( type == "extent"_L1 )
336 sipType = sipType_QgsPointCloudExtentRenderer;
337 else
338 sipType = 0;
339 SIP_END
340#endif
341
342 public:
343
348 enum class Property : int
349 {
350 Color = 0,
351 };
352
354
355 virtual ~QgsPointCloudRenderer() = default;
356
360 virtual QString type() const = 0;
361
367
370
373
377 virtual void renderBlock( const QgsPointCloudBlock *block, QgsPointCloudRenderContext &context ) = 0;
378
388 QVector<QVariantMap> identify( QgsPointCloudLayer *layer, const QgsRenderContext &context, const QgsGeometry &geometry, double toleranceForPointIdentification = 0 ) SIP_SKIP;
389
395 virtual bool willRenderPoint( const QMap<QString, QVariant> &pointAttributes )
396 {
397 Q_UNUSED( pointAttributes );
398 return true;
399 }
400
408 static QgsPointCloudRenderer *load( QDomElement &element, const QgsReadWriteContext &context ) SIP_FACTORY;
409
414 virtual QDomElement save( QDomDocument &doc, const QgsReadWriteContext &context ) const = 0;
415
423 virtual QSet< QString > usedAttributes( const QgsPointCloudRenderContext &context ) const;
424
431 virtual std::unique_ptr< QgsPreparedPointCloudRendererData > prepare() SIP_SKIP;
432
442 virtual void startRender( QgsPointCloudRenderContext &context );
443
454 virtual void stopRender( QgsPointCloudRenderContext &context );
455
461 virtual bool legendItemChecked( const QString &key );
462
468 virtual void checkLegendItem( const QString &key, bool state = true );
469
476 void setPointSize( double size ) { mPointSize = size; }
477
487 double pointSize() const { return mPointSize; }
488
496 void setPointSizeUnit( const Qgis::RenderUnit units ) { mPointSizeUnit = units; }
497
504 Qgis::RenderUnit pointSizeUnit() const { return mPointSizeUnit; }
505
512 void setPointSizeMapUnitScale( const QgsMapUnitScale &scale ) { mPointSizeMapUnitScale = scale; }
513
520 const QgsMapUnitScale &pointSizeMapUnitScale() const { return mPointSizeMapUnitScale; }
521
528 Qgis::PointCloudDrawOrder drawOrder2d() const;
529
536 void setDrawOrder2d( Qgis::PointCloudDrawOrder order );
537
543 Qgis::PointCloudSymbol pointSymbol() const;
544
550 void setPointSymbol( Qgis::PointCloudSymbol symbol );
551
562 double maximumScreenError() const;
563
574 void setMaximumScreenError( double error );
575
582 Qgis::RenderUnit maximumScreenErrorUnit() const;
583
590 void setMaximumScreenErrorUnit( Qgis::RenderUnit unit );
591
597 bool renderAsTriangles() const { return mRenderAsTriangles; }
598
604 void setRenderAsTriangles( bool asTriangles ) { mRenderAsTriangles = asTriangles; }
605
616 bool horizontalTriangleFilter() const { return mHorizontalTriangleFilter; }
617
628 void setHorizontalTriangleFilter( bool enabled ) { mHorizontalTriangleFilter = enabled; }
629
641 double horizontalTriangleFilterThreshold() const { return mHorizontalTriangleFilterThreshold; }
642
654 void setHorizontalTriangleFilterThreshold( double threshold ) { mHorizontalTriangleFilterThreshold = threshold; }
655
665 Qgis::RenderUnit horizontalTriangleFilterUnit() const { return mHorizontalTriangleFilterUnit; }
666
676 void setHorizontalTriangleFilterUnit( Qgis::RenderUnit unit ) { mHorizontalTriangleFilterUnit = unit; }
677
681 virtual QList<QgsLayerTreeModelLegendNode *> createLegendNodes( QgsLayerTreeLayer *nodeLayer ) SIP_FACTORY;
682
686 virtual QStringList legendRuleKeys() const;
687
692 void setShowLabels( const bool show ) { mShowLabels = show; }
693
699 bool showLabels() const { return mShowLabels; }
700
705 void setLabelTextFormat( const QgsTextFormat &textFormat ) { mLabelTextFormat = textFormat; }
706
711 QgsTextFormat labelTextFormat() const { return mLabelTextFormat; }
712
717 void setZoomOutBehavior( const Qgis::PointCloudZoomOutRenderBehavior behavior ) { mZoomOutBehavior = behavior; }
718
723 Qgis::PointCloudZoomOutRenderBehavior zoomOutBehavior() const { return mZoomOutBehavior; }
724
734 void setOverviewSwitchingScale( const double value );
735
740 double overviewSwitchingScale() const { return mOverviewSwitchingScale; }
741
748 QgsElevationShadingRenderer elevationShadingRenderer() const;
749
756 void setElevationShadingRenderer( const QgsElevationShadingRenderer &renderer ) { mElevationShadingRenderer = renderer; }
757
763 static const QgsPropertiesDefinition &propertyDefinitions();
764
771 const QgsPropertyCollection &dataDefinedProperties() const { return mDataDefinedProperties; }
772
780 void setDataDefinedProperties( const QgsPropertyCollection &collection ) { mDataDefinedProperties = collection; }
781
782 protected:
786 static void pointXY( QgsPointCloudRenderContext &context, const char *ptr, int i, double &x, double &y )
787 {
788 // be wary when copying this code!! In the renderer we explicitly request x/y/z as qint32 values, but in other
789 // situations these may be floats or doubles!
790 const qint32 ix = *reinterpret_cast< const qint32 * >( ptr + i * context.pointRecordSize() + context.xOffset() );
791 const qint32 iy = *reinterpret_cast< const qint32 * >( ptr + i * context.pointRecordSize() + context.yOffset() );
792 x = context.offset().x() + context.scale().x() * ix;
793 y = context.offset().y() + context.scale().y() * iy;
794 }
795
799 static double pointZ( QgsPointCloudRenderContext &context, const char *ptr, int i )
800 {
801 // be wary when copying this code!! In the renderer we explicitly request x/y/z as qint32 values, but in other
802 // situations these may be floats or doubles!
803 const qint32 iz = *reinterpret_cast<const qint32 * >( ptr + i * context.pointRecordSize() + context.zOffset() );
804 return ( context.offset().z() + context.scale().z() * iz ) * context.zValueScale() + context.zValueFixedOffset();
805 }
806
810 void drawPoint( double x, double y, const QColor &color, QgsPointCloudRenderContext &context ) const { drawPoint( x, y, color, mDefaultPainterPenWidth, context ); }
811
817 void drawPoint( double x, double y, const QColor &color, int width, QgsPointCloudRenderContext &context ) const
818 {
819 const QPointF originalXY( x, y );
820 context.renderContext().mapToPixel().transformInPlace( x, y );
821 QPainter *painter = context.renderContext().painter();
822 switch ( mPointSymbol )
823 {
825 painter->fillRect( QRectF( x - width * 0.5, y - width * 0.5, width, width ), color );
826 break;
827
829 painter->setBrush( QBrush( color ) );
830 painter->setPen( Qt::NoPen );
831 painter->drawEllipse( QRectF( x - width * 0.5, y - width * 0.5, width, width ) );
832 break;
833 };
834 }
835
836#ifndef SIP_RUN // intentionally left out from SIP to avoid API breaks in future when we move elevation post-processing elsewhere
837
842 void drawPointToElevationMap( double x, double y, double z, QgsPointCloudRenderContext &context ) const;
843
848 void drawPointToElevationMap( double x, double y, double z, int width, QgsPointCloudRenderContext &context ) const;
849#endif
850
855 void addPointToTriangulation( double x, double y, double z, const QColor &color, QgsPointCloudRenderContext &context )
856 {
857 QgsPointXY p = context.renderContext().mapToPixel().transform( x, y ) * context.renderContext().devicePixelRatio();
859 triangulation.points.push_back( p.x() );
860 triangulation.points.push_back( p.y() );
861 triangulation.colors.push_back( color.rgb() );
862 if ( context.renderContext().elevationMap() )
863 triangulation.elevations.push_back( static_cast<float>( z ) );
864 }
865
869 void copyCommonProperties( QgsPointCloudRenderer *destination ) const;
870
877 void restoreCommonProperties( const QDomElement &element, const QgsReadWriteContext &context );
878
885 void saveCommonProperties( QDomElement &element, const QgsReadWriteContext &context ) const;
886
892 QColor colorFromExpression( const QgsPointCloudBlock *block, int pointIndex, const QColor &rendererColor, QgsPointCloudRenderContext &context ) SIP_SKIP;
893
894 private:
895#ifdef SIP_RUN
897#endif
898
899#ifdef QGISDEBUG
901 QThread *mThread = nullptr;
902#endif
903
904 double mMaximumScreenError = 0.3;
905 Qgis::RenderUnit mMaximumScreenErrorUnit = Qgis::RenderUnit::Millimeters;
906
907 double mPointSize = 1;
909 QgsMapUnitScale mPointSizeMapUnitScale;
910
912 int mDefaultPainterPenWidth = 1;
914
915 bool mRenderAsTriangles = false;
916 bool mHorizontalTriangleFilter = false;
917 double mHorizontalTriangleFilterThreshold = 5.0;
918 Qgis::RenderUnit mHorizontalTriangleFilterUnit = Qgis::RenderUnit::Millimeters;
919
920 bool mShowLabels = false;
921 QgsTextFormat mLabelTextFormat;
922
924 double mOverviewSwitchingScale = 1.0;
925
926 QgsElevationShadingRenderer mElevationShadingRenderer;
927
928 static void initPropertyDefinitions();
929 static QgsPropertiesDefinition sPropertyDefinitions;
930 QgsPropertyCollection mDataDefinedProperties;
931
932 std::unique_ptr<QgsExpressionContextScope> mExpressionContextScope;
933};
934
935#endif // QGSPOINTCLOUDRENDERER_H
PointCloudSymbol
Rendering symbols for point cloud points.
Definition qgis.h:4558
@ Circle
Renders points as circles.
Definition qgis.h:4560
@ Square
Renders points as squares.
Definition qgis.h:4559
PointCloudDrawOrder
Pointcloud rendering order for 2d views.
Definition qgis.h:4570
@ Default
Draw points in the order they are stored.
Definition qgis.h:4571
PointCloudZoomOutRenderBehavior
Point cloud zoom out options.
Definition qgis.h:6655
@ RenderExtents
Render only point cloud extents when zoomed out.
Definition qgis.h:6656
RenderUnit
Rendering size units.
Definition qgis.h:5552
@ Millimeters
Millimeters.
Definition qgis.h:5553
Stores a digital elevation model in a raster image which may get updated as a part of the map layer r...
Renders elevation shading on an image with different methods (eye dome lighting, hillshading,...
Single scope for storing variables and functions for use within a QgsExpressionContext.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
A geometry is the spatial representation of a feature.
Layer tree node points to a map layer.
An abstract interface for legend items returned from QgsMapLayerLegend implementation.
QgsPointXY transform(const QgsPointXY &p) const
Transforms a point p from map (world) coordinates to device coordinates.
void transformInPlace(double &x, double &y) const
Transforms map coordinates to device coordinates.
Struct for storing maximum and minimum scales for measurements in map units.
A collection of point cloud attributes.
DataType
Systems of unit measurement.
@ UShort
Unsigned short int 2 bytes.
@ UChar
Unsigned char 1 byte.
@ UInt32
Unsigned int32 4 bytes.
@ UInt64
Unsigned int64 8 bytes.
Base class for storing raw data from point cloud nodes.
Represents a map layer supporting display of point clouds.
Encapsulates the render context for a 2D point cloud rendering operation.
int yOffset() const
Returns the offset for the y value in a point record.
double zValueFixedOffset() const
Returns any constant offset which must be applied to z values taken from the point cloud index.
QgsVector3D offset() const
Returns the offset of the layer's int32 coordinates compared to CRS coords.
QgsRenderContext & renderContext()
Returns a reference to the context's render context.
static void getAttribute(const char *data, std::size_t offset, QgsPointCloudAttribute::DataType type, T &value)
Retrieves the attribute value from data at the specified offset, where type indicates the original da...
void setOffset(const QgsVector3D &offset)
Sets the offset of the layer's int32 coordinates compared to CRS coords.
void setScale(const QgsVector3D &scale)
Sets the scale of the layer's int32 coordinates compared to CRS coords.
int pointRecordSize() const
Returns the size of a single point record.
int xOffset() const
Returns the offset for the x value in a point record.
const QgsRenderContext & renderContext() const
Returns a reference to the context's render context.
QgsPointCloudRenderContext & operator=(const QgsPointCloudRenderContext &)=delete
QgsPointCloudRenderContext(const QgsPointCloudRenderContext &rh)=delete
double zValueScale() const
Returns any constant scaling factor which must be applied to z values taken from the point cloud inde...
QgsVector3D scale() const
Returns the scale of the layer's int32 coordinates compared to CRS coords.
QgsPointCloudAttributeCollection attributes() const
Returns the attributes associated with the rendered block.
TriangulationData & triangulationData()
Returns reference to the triangulation data structure (only used when rendering as triangles is enabl...
QgsPointCloudRenderContext(QgsRenderContext &context, const QgsVector3D &scale, const QgsVector3D &offset, double zValueScale, double zValueFixedOffset, QgsFeedback *feedback=nullptr)
Constructor for QgsPointCloudRenderContext.
int zOffset() const
Returns the offset for the y value in a point record.
QgsFeedback * feedback() const
Returns the feedback object used to cancel rendering.
Abstract base class for 2d point cloud renderers.
virtual QDomElement save(QDomDocument &doc, const QgsReadWriteContext &context) const =0
Saves the renderer configuration to an XML element.
Qgis::PointCloudZoomOutRenderBehavior zoomOutBehavior() const
Returns the renderer behavior when zoomed out.
bool renderAsTriangles() const
Returns whether points are triangulated to render solid surface.
virtual void checkLegendItem(const QString &key, bool state=true)
Called when the check state of the legend item with the specified key is changed.
QgsTextFormat labelTextFormat() const
Returns the text format renderer is using for rendering labels.
virtual void renderBlock(const QgsPointCloudBlock *block, QgsPointCloudRenderContext &context)=0
Renders a block of point cloud data using the specified render context.
double overviewSwitchingScale() const
Returns the overview switching scale.
QgsPointCloudRenderer & operator=(const QgsPointCloudRenderer &other)=delete
QgsPointCloudRenderer cannot be copied – use clone() instead.
const QgsMapUnitScale & pointSizeMapUnitScale() const
Returns the map unit scale used for the point size.
void setDataDefinedProperties(const QgsPropertyCollection &collection)
Sets the renderer's property collection, used for data defined overrides.
virtual std::unique_ptr< QgsPreparedPointCloudRendererData > prepare()
Returns prepared data container for bulk point color retrieval.
void setPointSizeMapUnitScale(const QgsMapUnitScale &scale)
Sets the map unit scale used for the point size.
virtual QSet< QString > usedAttributes(const QgsPointCloudRenderContext &context) const
Returns a list of attributes required by this renderer.
virtual bool legendItemChecked(const QString &key)
Returns true if the legend item with the specified key is checked.
void setPointSize(double size)
Sets the point size.
bool horizontalTriangleFilter() const
Returns whether large triangles will get rendered.
virtual QString type() const =0
Returns the identifier of the renderer type.
void setHorizontalTriangleFilterThreshold(double threshold)
Sets threshold for filtering of triangles.
void setHorizontalTriangleFilterUnit(Qgis::RenderUnit unit)
Sets units of the threshold for filtering of triangles.
QgsPointCloudRenderer(const QgsPointCloudRenderer &other)=delete
QgsPointCloudRenderer cannot be copied – use clone() instead.
bool showLabels() const
Returns whether the renderer shows file labels inside the extent rectangle.
virtual QgsPointCloudRenderer * clone() const =0
Create a deep copy of this renderer.
void addPointToTriangulation(double x, double y, double z, const QColor &color, QgsPointCloudRenderContext &context)
Adds a point to the list of points to be triangulated (only used when renderAsTriangles() is enabled)...
QVector< QVariantMap > identify(QgsPointCloudLayer *layer, const QgsRenderContext &context, const QgsGeometry &geometry, double toleranceForPointIdentification=0)
Returns the list of visible points of the point cloud layer layer and an extent defined by a geometry...
void setPointSizeUnit(const Qgis::RenderUnit units)
Sets the units used for the point size.
Qgis::RenderUnit horizontalTriangleFilterUnit() const
Returns units of the threshold for filtering of triangles.
Property
Data-defined properties that can be set on the renderer.
void setRenderAsTriangles(bool asTriangles)
Sets whether points are triangulated to render solid surface.
virtual bool willRenderPoint(const QMap< QString, QVariant > &pointAttributes)
Checks whether the point holding pointAttributes attributes will be rendered By default if not overri...
virtual ~QgsPointCloudRenderer()=default
void setLabelTextFormat(const QgsTextFormat &textFormat)
Sets the text format renderers should use for rendering labels.
void drawPoint(double x, double y, const QColor &color, QgsPointCloudRenderContext &context) const
Draws a point using a color at the specified x and y (in map coordinates).
void drawPoint(double x, double y, const QColor &color, int width, QgsPointCloudRenderContext &context) const
Draws a point using a color and painter width at the specified x and y (in map coordinates).
void setShowLabels(const bool show)
Set whether the renderer should also render file labels inside extent.
const QgsPropertyCollection & dataDefinedProperties() const
Returns the renderer's property collection, used for data defined overrides.
Qgis::RenderUnit pointSizeUnit() const
Returns the units used for the point size.
double horizontalTriangleFilterThreshold() const
Returns threshold for filtering of triangles.
virtual void startRender(QgsPointCloudRenderContext &context)
Must be called when a new render cycle is started.
virtual void stopRender(QgsPointCloudRenderContext &context)
Must be called when a render cycle has finished, to allow the renderer to clean up.
void setHorizontalTriangleFilter(bool enabled)
Sets whether large triangles will get rendered.
double pointSize() const
Returns the point size.
void setZoomOutBehavior(const Qgis::PointCloudZoomOutRenderBehavior behavior)
Sets the renderer behavior when zoomed out.
static double pointZ(QgsPointCloudRenderContext &context, const char *ptr, int i)
Retrieves the z value for the point at index i.
static void pointXY(QgsPointCloudRenderContext &context, const char *ptr, int i, double &x, double &y)
Retrieves the x and y coordinate for the point at index i.
void setElevationShadingRenderer(const QgsElevationShadingRenderer &renderer)
Sets the shading renderer used to render shading on the layer.
Represents a 2D point.
Definition qgspointxy.h:62
double y
Definition qgspointxy.h:66
double x
Definition qgspointxy.h:65
Base class for 2d point cloud renderer prepared data containers.
virtual QColor pointColor(const QgsPointCloudBlock *block, int i, double z)=0
An optimised method of retrieving the color of a point from a point cloud block.
virtual bool prepareBlock(const QgsPointCloudBlock *block)=0
Prepares the renderer for using the specified block.
virtual QSet< QString > usedAttributes() const =0
Returns the set of attributes used by the prepared point cloud renderer.
A grouped map of multiple QgsProperty objects, each referenced by an integer key value.
A container for the context for various read/write operations on objects.
Contains information about the context of a rendering operation.
QPainter * painter()
Returns the destination QPainter for the render operation.
QgsElevationMap * elevationMap() const
Returns the destination elevation map for the render operation.
float devicePixelRatio() const
Returns the device pixel ratio.
const QgsMapToPixel & mapToPixel() const
Returns the context's map to pixel transform, which transforms between map coordinates and device coo...
Container for all settings relating to text rendering.
A 3D vector (similar to QVector3D) with the difference that it uses double precision instead of singl...
Definition qgsvector3d.h:33
double y() const
Returns Y coordinate.
Definition qgsvector3d.h:60
double z() const
Returns Z coordinate.
Definition qgsvector3d.h:62
double x() const
Returns X coordinate.
Definition qgsvector3d.h:58
#define SIP_CONVERT_TO_SUBCLASS_CODE(code)
Definition qgis_sip.h:198
#define SIP_SKIP
Definition qgis_sip.h:133
#define SIP_FACTORY
Definition qgis_sip.h:83
#define SIP_END
Definition qgis_sip.h:215
QMap< int, QgsPropertyDefinition > QgsPropertiesDefinition
Definition of available properties.
Helper data structure used when rendering points as triangulated surface.
std::vector< QRgb > colors
RGB color for each point.
std::vector< float > elevations
Z value for each point (only used when global map shading is enabled).
std::vector< double > points
X,Y for each point - kept in this structure so that we can use it without further conversions in Dela...