Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qquick3dfrustumcamera_p.h
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
4#ifndef QSSGFRUSTUMCAMERA_H
5#define QSSGFRUSTUMCAMERA_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists purely as an
12// implementation detail. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <QtQuick3D/private/qquick3dperspectivecamera_p.h>
19
21
22struct QSSGRenderCamera;
23class Q_QUICK3D_EXPORT QQuick3DFrustumCamera : public QQuick3DPerspectiveCamera
24{
26 Q_PROPERTY(float top READ top WRITE setTop NOTIFY topChanged)
27 Q_PROPERTY(float bottom READ bottom WRITE setBottom NOTIFY bottomChanged)
28 Q_PROPERTY(float right READ right WRITE setRight NOTIFY rightChanged)
29 Q_PROPERTY(float left READ left WRITE setLeft NOTIFY leftChanged)
30
31 QML_NAMED_ELEMENT(FrustumCamera)
32
33public:
35
36 float top() const;
37 float bottom() const;
38 float right() const;
39 float left() const;
40
41public Q_SLOTS:
42 void setTop(float top);
43 void setBottom(float bottom);
44 void setRight(float right);
45 void setLeft(float left);
46
48 void topChanged();
49 void bottomChanged();
50 void rightChanged();
51 void leftChanged();
52
53protected:
54 QSSGRenderGraphObject *updateSpatialNode(QSSGRenderGraphObject *node) override;
55
57 float m_top = 0.0f;
58 float m_bottom = 0.0f;
59 float m_right = 0.0f;
60 float m_left = 0.0f;
61};
62
64
65#endif // QSSGFRUSTUMCAMERA_H
Combined button and popup list for selecting options.
GLdouble GLdouble GLdouble GLdouble top
GLdouble GLdouble right
GLfloat GLfloat f
GLint left
GLint GLint bottom
#define QML_NAMED_ELEMENT(NAME)
#define Q_PROPERTY(...)
#define Q_OBJECT
#define Q_SLOTS
#define Q_SIGNALS
#define explicit