QGIS API Documentation 3.40.0-Bratislava (b56115d8743)
|
3 More...
#include <qgs3dmapscene.h>
Public Types | |
enum | SceneState { Ready , Updating } |
Enumeration of possible states of the 3D scene. More... | |
Public Slots | |
void | updateTemporal () |
Updates the temporale entities. | |
Signals | |
void | fpsCountChanged (float fpsCount) |
Emitted when the FPS count changes. | |
void | fpsCounterEnabledChanged (bool fpsCounterEnabled) |
Emitted when the FPS counter is activated or deactivated. | |
void | gpuMemoryLimitReached () |
Emitted when one of the entities reaches its GPU memory limit and it is not possible to lower the GPU memory use by unloading data that's not currently needed. | |
void | sceneStateChanged () |
Emitted when the scene's state has changed. | |
void | terrainEntityChanged () |
Emitted when the current terrain entity is replaced by a new one. | |
void | terrainPendingJobsCountChanged () |
Emitted when the number of terrain's pending jobs changes. | |
void | totalPendingJobsCountChanged () |
Emitted when the total number of pending jobs changes. | |
void | viewed2DExtentFrom3DChanged (QVector< QgsPointXY > extent) |
Emitted when the viewed 2D extent seen by the 3D camera has changed. | |
Public Member Functions | |
Qgs3DMapScene (Qgs3DMapSettings &map, QgsAbstract3DEngine *engine) | |
Constructs a 3D scene based on map settings and Qt 3D renderer configuration. | |
QgsCameraController * | cameraController () const |
Returns camera controller. | |
void | disableClipping () |
Disables OpenGL clipping. | |
QgsDoubleRange | elevationRange () const |
Returns the scene's elevation range. | |
void | enableClipping (const QList< QVector4D > &clipPlaneEquations) |
Enables OpenGL clipping based on the planes equations defined in clipPlaneEquations. | |
QgsAbstract3DEngine * | engine () const |
Returns the abstract 3D engine. | |
void | exportScene (const Qgs3DMapExportSettings &exportSettings) |
Exports the scene according to the scene export settings. | |
Qgs3DAxis * | get3DAxis () const |
Returns the 3D axis object. | |
QVector< const QgsChunkNode * > | getLayerActiveChunkNodes (QgsMapLayer *layer) |
Returns the active chunk nodes of layer. | |
bool | hasSceneUpdatesEnabled () const |
Returns whether updates of the 3D scene's entities are allowed. | |
Qt3DCore::QEntity * | layerEntity (QgsMapLayer *layer) const |
Returns the entity belonging to layer. | |
QList< QgsMapLayer * > | layers () const |
Returns the layers that contain chunked entities. | |
Qgs3DMapSettings * | mapSettings () const |
Returns the 3D map settings. | |
QgsRectangle | sceneExtent () const |
Returns the scene extent in the map's CRS. | |
SceneState | sceneState () const |
Returns the current state of the scene. | |
void | setSceneUpdatesEnabled (bool enabled) |
Sets whether updates of the 3D scene's entities are allowed. | |
void | setViewFrom2DExtent (const QgsRectangle &extent) |
Resets camera view to show the extent extent (top view) | |
QgsTerrainEntity * | terrainEntity () |
Returns terrain entity (may be temporarily nullptr ) | |
int | terrainPendingJobsCount () const |
Returns number of pending jobs of the terrain entity. | |
int | totalPendingJobsCount () const |
Returns number of pending jobs for all chunked entities. | |
QVector< QgsPointXY > | viewFrustum2DExtent () const |
Calculates the 2D extent viewed by the 3D camera as the vertices of the viewed trapezoid. | |
void | viewZoomFull () |
Resets camera view to show the whole scene (top view) | |
float | worldSpaceError (float epsilon, float distance) const |
Given screen error (in pixels) and distance from camera (in 3D world coordinates), this function estimates the error in world space. | |
Static Public Member Functions | |
static Q_DECL_DEPRECATED QMap< QString, Qgs3DMapScene * > | openScenes () |
Returns a map of 3D map scenes (by name) open in the QGIS application. | |
Static Public Attributes | |
static std::function< QMap< QString, Qgs3DMapScene * >() > | sOpenScenesFunction = [] { return QMap< QString, Qgs3DMapScene * >(); } |
Static function for returning open 3D map scenes. | |
3
Entity that encapsulates our 3D scene - contains all other entities (such as terrain) as children.
Definition at line 67 of file qgs3dmapscene.h.
Enumeration of possible states of the 3D scene.
Enumerator | |
---|---|
Ready | The scene is fully loaded/updated. |
Updating | The scene is still being loaded/updated. |
Definition at line 115 of file qgs3dmapscene.h.
Qgs3DMapScene::Qgs3DMapScene | ( | Qgs3DMapSettings & | map, |
QgsAbstract3DEngine * | engine | ||
) |
Constructs a 3D scene based on map settings and Qt 3D renderer configuration.
Definition at line 86 of file qgs3dmapscene.cpp.
|
inline |
Returns camera controller.
Definition at line 80 of file qgs3dmapscene.h.
void Qgs3DMapScene::disableClipping | ( | ) |
Disables OpenGL clipping.
Definition at line 1239 of file qgs3dmapscene.cpp.
QgsDoubleRange Qgs3DMapScene::elevationRange | ( | ) | const |
Returns the scene's elevation range.
Definition at line 1066 of file qgs3dmapscene.cpp.
void Qgs3DMapScene::enableClipping | ( | const QList< QVector4D > & | clipPlaneEquations | ) |
Enables OpenGL clipping based on the planes equations defined in clipPlaneEquations.
The number of planes is equal to the size of clipPlaneEquations. A plane equation contains 4 elements. A simple way to define a clip plane equation is to define a normalized normal to the plane and its distance from the origin of the scene. In that case, the first 3 elements are the coordinates of the normal of the plane as (X, Y, Z). They need to be normalized. The last element is the distance of the plane from the origin of the scene. In mathematical terms, a 3d plane can be defined with the equation ax+by+cz+d=0 The normal is (a, b, c) with |a, b, c| = 1 The distance is -d.
By default, OpenGL supports up to 8 additional clipping planes. If clipPlaneEquations contains more than 8 planes, only the first 8 ones will be used. If clipPlaneEquations is empty, the clipping is disabled.
Definition at line 1223 of file qgs3dmapscene.cpp.
|
inline |
void Qgs3DMapScene::exportScene | ( | const Qgs3DMapExportSettings & | exportSettings | ) |
Exports the scene according to the scene export settings.
Definition at line 998 of file qgs3dmapscene.cpp.
|
signal |
Emitted when the FPS count changes.
|
signal |
Emitted when the FPS counter is activated or deactivated.
|
inline |
QVector< const QgsChunkNode * > Qgs3DMapScene::getLayerActiveChunkNodes | ( | QgsMapLayer * | layer | ) |
Returns the active chunk nodes of layer.
Definition at line 1048 of file qgs3dmapscene.cpp.
|
signal |
Emitted when one of the entities reaches its GPU memory limit and it is not possible to lower the GPU memory use by unloading data that's not currently needed.
|
inline |
Returns whether updates of the 3D scene's entities are allowed.
Normally, scene updates are enabled. But for debugging purposes, it may be useful to temporarily disable scene updates.
Definition at line 197 of file qgs3dmapscene.h.
|
inline |
Returns the entity belonging to layer.
Definition at line 152 of file qgs3dmapscene.h.
|
inline |
Returns the layers that contain chunked entities.
Definition at line 145 of file qgs3dmapscene.h.
|
inline |
|
static |
Returns a map of 3D map scenes (by name) open in the QGIS application.
Definition at line 1130 of file qgs3dmapscene.cpp.
QgsRectangle Qgs3DMapScene::sceneExtent | ( | ) | const |
Returns the scene extent in the map's CRS.
Definition at line 1061 of file qgs3dmapscene.cpp.
|
inline |
Returns the current state of the scene.
Definition at line 122 of file qgs3dmapscene.h.
|
signal |
Emitted when the scene's state has changed.
|
inline |
Sets whether updates of the 3D scene's entities are allowed.
Normally, scene updates are enabled. But for debugging purposes, it may be useful to temporarily disable scene updates.
Definition at line 206 of file qgs3dmapscene.h.
void Qgs3DMapScene::setViewFrom2DExtent | ( | const QgsRectangle & | extent | ) |
Resets camera view to show the extent extent (top view)
Definition at line 217 of file qgs3dmapscene.cpp.
|
inline |
Returns terrain entity (may be temporarily nullptr
)
Definition at line 86 of file qgs3dmapscene.h.
|
signal |
Emitted when the current terrain entity is replaced by a new one.
int Qgs3DMapScene::terrainPendingJobsCount | ( | ) | const |
Returns number of pending jobs of the terrain entity.
Definition at line 270 of file qgs3dmapscene.cpp.
|
signal |
Emitted when the number of terrain's pending jobs changes.
int Qgs3DMapScene::totalPendingJobsCount | ( | ) | const |
Returns number of pending jobs for all chunked entities.
Definition at line 275 of file qgs3dmapscene.cpp.
|
signal |
Emitted when the total number of pending jobs changes.
|
slot |
Updates the temporale entities.
Definition at line 582 of file qgs3dmapscene.cpp.
|
signal |
Emitted when the viewed 2D extent seen by the 3D camera has changed.
QVector< QgsPointXY > Qgs3DMapScene::viewFrustum2DExtent | ( | ) | const |
Calculates the 2D extent viewed by the 3D camera as the vertices of the viewed trapezoid.
Definition at line 240 of file qgs3dmapscene.cpp.
void Qgs3DMapScene::viewZoomFull | ( | ) |
Resets camera view to show the whole scene (top view)
Definition at line 206 of file qgs3dmapscene.cpp.
float Qgs3DMapScene::worldSpaceError | ( | float | epsilon, |
float | distance | ||
) | const |
Given screen error (in pixels) and distance from camera (in 3D world coordinates), this function estimates the error in world space.
Takes into account camera's field of view and the screen (3D view) size.
Definition at line 283 of file qgs3dmapscene.cpp.
|
static |
Static function for returning open 3D map scenes.
Definition at line 84 of file qgs3dmapscene.h.