Q3DScene Class
Q3DScene class provides description of the 3D scene being visualized. More...
Header: | #include <Q3DScene> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS DataVisualization) target_link_libraries(mytarget PRIVATE Qt6::DataVisualization) |
qmake: | QT += datavisualization |
Since: | QtDataVisualization 1.0 |
Instantiated By: | Scene3D |
Properties
|
|
Public Functions
virtual | ~Q3DScene() |
Q3DCamera * | activeCamera() const |
Q3DLight * | activeLight() const |
float | devicePixelRatio() const |
QPoint | graphPositionQuery() const |
bool | isSecondarySubviewOnTop() const |
bool | isSlicingActive() const |
QRect | primarySubViewport() const |
QRect | secondarySubViewport() const |
QPoint | selectionQueryPosition() const |
void | setActiveCamera() |
void | setActiveLight() |
void | setDevicePixelRatio() |
void | setGraphPositionQuery() |
void | setPrimarySubViewport() |
void | setSecondarySubViewport() |
void | setSecondarySubviewOnTop() |
void | setSelectionQueryPosition() |
void | setSlicingActive() |
QRect | viewport() const |
Signals
void | activeCameraChanged() |
void | activeLightChanged() |
void | devicePixelRatioChanged() |
void | graphPositionQueryChanged() |
void | primarySubViewportChanged() |
void | secondarySubViewportChanged() |
void | secondarySubviewOnTopChanged() |
void | selectionQueryPositionChanged() |
void | slicingActiveChanged() |
void | viewportChanged() |
Static Public Members
QPoint | invalidSelectionPoint() |
Detailed Description
The 3D scene contains a single active camera and a single active light source. Visualized data is assumed to be at a fixed location.
The 3D scene also keeps track of the viewport in which visualization rendering is done, the primary subviewport inside the viewport where the main 3D data visualization view resides and the secondary subviewport where the 2D sliced view of the data resides. The subviewports are by default resized by the Q3DScene. To override the resize behavior you need to listen to both viewportChanged() and slicingActiveChanged() signals and recalculate the subviewports accordingly.
Also the scene has flag for tracking if the secondary 2D slicing view is currently active or not.
Note: Not all visualizations support the secondary 2D slicing view.
Property Documentation
activeCamera : Q3DCamera*
This property holds the currently active camera in the 3D scene.
When a new Q3DCamera object is set, it is automatically added as child of the scene.
Access functions:
Q3DCamera * | activeCamera() const |
void | setActiveCamera() |
Notifier signal:
void | activeCameraChanged() |
activeLight : Q3DLight*
This property holds the currently active light in the 3D scene.
When a new Q3DLight objects is set, it is automatically added as child of the scene.
Access functions:
Q3DLight * | activeLight() const |
void | setActiveLight() |
Notifier signal:
void | activeLightChanged() |
devicePixelRatio : float
This property holds the device pixel ratio that is used when mapping input coordinates to pixel coordinates.
Access functions:
float | devicePixelRatio() const |
void | setDevicePixelRatio() |
Notifier signal:
void | devicePixelRatioChanged() |
graphPositionQuery : QPoint
This property holds the coordinates for the user input that should be processed by the scene as a graph position query.
If this property is set to a value other than invalidSelectionPoint(), the graph tries to match a graph position to the specified coordinates within the primary viewport. After the rendering pass, this property is returned to its default state of invalidSelectionPoint(). The queried graph position can be read from the QAbstract3DGraph::queriedGraphPosition property after the next render pass.
There is no single correct 3D coordinate to match a particular screen position, so to be consistent, the queries are always done against the inner sides of an invisible box surrounding the graph.
Note: Bar graphs allow graph position queries only at the graph floor level.
Access functions:
QPoint | graphPositionQuery() const |
void | setGraphPositionQuery() |
Notifier signal:
void | graphPositionQueryChanged() |
See also QAbstract3DGraph::queriedGraphPosition.
primarySubViewport : QRect
This property holds the current subviewport rectangle inside the viewport where the primary view of the data visualization is targeted.
If isSlicingActive() is false
, the primary sub viewport is equal to viewport(). If isSlicingActive() is true
and the primary sub viewport has not been explicitly set, it will be one fifth of viewport().
Note: Setting primarySubViewport larger than or outside of the viewport resizes the viewport accordingly.
Access functions:
QRect | primarySubViewport() const |
void | setPrimarySubViewport() |
Notifier signal:
void | primarySubViewportChanged() |
secondarySubViewport : QRect
This property holds the secondary viewport rectangle inside the viewport.
The secondary viewport is used for drawing the 2D slice view in some visualizations. If it has not been explicitly set, it will be equal to QRect. If isSlicingActive() is true
, it will be equal to viewport.
Note: If the secondary sub viewport is larger than or outside of the viewport, the viewport is resized accordingly.
Access functions:
QRect | secondarySubViewport() const |
void | setSecondarySubViewport() |
Notifier signal:
void | secondarySubViewportChanged() |
secondarySubviewOnTop : bool
This property holds whether the 2D slicing view or the 3D view is drawn on top.
Access functions:
bool | isSecondarySubviewOnTop() const |
void | setSecondarySubviewOnTop() |
Notifier signal:
void | secondarySubviewOnTopChanged() |
selectionQueryPosition : QPoint
This property holds the coordinates for the user input that should be processed by the scene as a selection.
If this property is set to a value other than invalidSelectionPoint(), the graph tries to select a data item, axis label, or a custom item at the specified coordinates within the primary viewport. After the rendering pass, the property is returned to its default state of invalidSelectionPoint().
Access functions:
QPoint | selectionQueryPosition() const |
void | setSelectionQueryPosition() |
Notifier signal:
void | selectionQueryPositionChanged() |
See also QAbstract3DGraph::selectedElement.
slicingActive : bool
This property holds whether the 2D slicing view is currently active.
If true
, QAbstract3DGraph::selectionMode must have either QAbstract3DGraph::SelectionRow or QAbstract3DGraph::SelectionColumn set to a valid selection.
Note: Not all visualizations support the 2D slicing view.
Access functions:
bool | isSlicingActive() const |
void | setSlicingActive() |
Notifier signal:
void | slicingActiveChanged() |
[read-only]
viewport : const QRect
This property holds a read only property that contains the current viewport rectangle where all the 3D rendering is targeted.
Access functions:
QRect | viewport() const |
Notifier signal:
void | viewportChanged() |
Member Function Documentation
[virtual]
Q3DScene::~Q3DScene()
Destroys the 3D scene and all the objects contained within it.
[static]
QPoint Q3DScene::invalidSelectionPoint()
Returns a QPoint signifying an invalid selection position.