17#include "moc_qgswindow3dengine.cpp"
19#include <Qt3DExtras/QForwardRenderer>
20#include <Qt3DRender/QRenderSettings>
32 mMapCanvas3D = parent;
34 mRoot =
new Qt3DCore::QEntity;
68 mSceneRoot->setParent( mRoot );
80 return mMapCanvas3D->
camera();
85 return mMapCanvas3D->size();
97 mMapCanvas3D->setWidth( mSize.width() );
98 mMapCanvas3D->setHeight( mSize.height() );
100 camera()->setAspectRatio(
float( mSize.width() ) /
float( mSize.height() ) );
Convenience wrapper to simplify the creation of a 3D window ready to be used with QGIS.
Qt3DRender::QCamera * camera() const
Returns the default camera of the 3D Window.
void setRootEntity(Qt3DCore::QEntity *root)
Sets the specified root entity of the scene.
void setActiveFrameGraph(Qt3DRender::QFrameGraphNode *activeFrameGraph)
Activates the specified activeFrameGraph.
Qt3DRender::QRenderSettings * renderSettings() const
Returns the render settings of the 3D Window.
Base class for 3D engine implementation.
void sizeChanged()
Emitted after a call to setSize()
QgsFrameGraph * mFrameGraph
Qt3DRender::QLayer * renderLayer()
Returns a layer object used to indicate that the object is transparent.
Container class that holds different objects related to frame graphs of 3D scenes.
Qt3DRender::QFrameGraphNode * frameGraphRoot()
Returns the root of the frame graph object.
void setClearColor(const QColor &clearColor)
Sets the clear color of the scene (background color)
void setFrustumCullingEnabled(bool enabled)
Sets whether frustum culling is enabled.
QgsForwardRenderView & forwardRenderView()
Returns forward renderview.
QgsShadowRenderView & shadowRenderView()
Returns shadow renderview.
void setSize(QSize s)
Sets the size of the buffers used for rendering.
Qt3DRender::QLayer * entityCastingShadowsLayer() const
Returns the layer to be used by entities to be included in this renderview.
virtual void setEnabled(bool enable) override
Enable or disable via enable the renderview sub tree.
void setRootEntity(Qt3DCore::QEntity *root) override
Sets root entity of the 3D scene.
QgsWindow3DEngine(Qgs3DMapCanvas *parent)
Constructor for QgsWindow3DEngine with the specified parent Qgs3DMapCanvas.
Qt3DRender::QRenderSettings * renderSettings() override
Returns access to the engine's render settings (the frame graph can be accessed from here)
void setSize(QSize s) override
Sets the size of the rendering area (in pixels)
QSize size() const override
Returns size of the engine's rendering area in pixels.
Qt3DCore::QEntity * root() const
Returns the root entity.
Qt3DRender::QCamera * camera() override
Returns pointer to the engine's camera entity.
QSurface * surface() const override
Returns the surface of the engine.
void setClearColor(const QColor &color) override
Sets background color of the scene.
QWindow * window()
Returns the internal 3D window where all the rendered output is displayed.
void setFrustumCullingEnabled(bool enabled) override
Sets whether frustum culling is enabled (this should make rendering faster by not rendering entities ...