Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qquick3dscenerootnode.cpp
Go to the documentation of this file.
1// Copyright (C) 2019 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
5
6QT_BEGIN_NAMESPACE
7
8QQuick3DSceneRootNode::QQuick3DSceneRootNode(QQuick3DViewport *view3D, QQuick3DNode *parent)
9 : QQuick3DNode(parent)
10 , m_view3D(view3D)
11{
12}
13
14QQuick3DSceneRootNode::~QQuick3DSceneRootNode()
15{
16}
17
18
19QQuick3DViewport *QQuick3DSceneRootNode::view3D()
20{
21 return m_view3D;
22}
23
24QT_END_NAMESPACE