HeightMapSurfaceDataProxy QML Type

Base proxy type for Surface3D. More...

Import Statement: import QtDataVisualization 1.2
Since: QtDataVisualization 1.0
Instantiates: QHeightMapSurfaceDataProxy
Inherits:

SurfaceDataProxy

Properties

Detailed Description

HeightMapSurfaceDataProxy takes care of surface related height map data handling. It provides a way to give a height map to be visualized as a surface plot.

For more complete description, see QHeightMapSurfaceDataProxy.

See also Qt Data Visualization Data Handling.

Property Documentation

heightMapFile : string

A file with a height map image to be visualized. Setting this property replaces current data with height map data.

There are several formats the image file can be given in, but if it is not in a directly usable format, a conversion is made.

Note: If the result seems wrong, the automatic conversion failed and you should try converting the image yourself before setting it. Preferred format is QImage::Format_RGB32 in grayscale.

The height of the image is read from the red component of the pixels if the image is in grayscale, otherwise it is an average calculated from red, green and blue components of the pixels. Using grayscale images may improve data conversion speed for large images.

Since height maps do not contain values for X or Z axes, those values need to be given separately using minXValue, maxXValue, minZValue, and maxZValue properties. X-value corresponds to image horizontal direction and Z-value to the vertical. Setting any of these properties triggers asynchronous re-resolving of any existing height map.

Not recommended formats: all mono formats (for example QImage::Format_Mono).


maxXValue : real

The maximum X value for the generated surface points. Defaults to 10.0. When setting this property the corresponding minimum value is adjusted if necessary, to ensure that the range remains valid.


maxZValue : real

The maximum Z value for the generated surface points. Defaults to 10.0. When setting this property the corresponding minimum value is adjusted if necessary, to ensure that the range remains valid.


minXValue : real

The minimum X value for the generated surface points. Defaults to 0.0. When setting this property the corresponding maximum value is adjusted if necessary, to ensure that the range remains valid.


minZValue : real

The minimum Z value for the generated surface points. Defaults to 0.0. When setting this property the corresponding maximum value is adjusted if necessary, to ensure that the range remains valid.


© 2019 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.