// Copyright (C) 2019 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #ifndef QSSGORTHOGRAPHICCAMERA_H #define QSSGORTHOGRAPHICCAMERA_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include QT_BEGIN_NAMESPACE class QSSGRenderCamera; class Q_QUICK3D_EXPORT QQuick3DOrthographicCamera : public QQuick3DCamera { Q_OBJECT Q_PROPERTY(float clipNear READ clipNear WRITE setClipNear NOTIFY clipNearChanged) Q_PROPERTY(float clipFar READ clipFar WRITE setClipFar NOTIFY clipFarChanged) Q_PROPERTY(float horizontalMagnification READ horizontalMagnification WRITE setHorizontalMagnification NOTIFY horizontalMagnificationChanged) Q_PROPERTY(float verticalMagnification READ verticalMagnification WRITE setVerticalMagnification NOTIFY verticalMagnificationChanged) QML_NAMED_ELEMENT(OrthographicCamera) public: explicit QQuick3DOrthographicCamera(QQuick3DNode *parent = nullptr); float clipNear() const; float clipFar() const; float horizontalMagnification() const; float verticalMagnification() const; public Q_SLOTS: void setClipNear(float clipNear); void setClipFar(float clipFar); void setHorizontalMagnification(float horizontalMagnification); void setVerticalMagnification(float horizontalMagnification); Q_SIGNALS: void clipNearChanged(); void clipFarChanged(); void horizontalMagnificationChanged(); void verticalMagnificationChanged(); protected: QSSGRenderGraphObject *updateSpatialNode(QSSGRenderGraphObject *node) override; private: float m_clipNear = 10.0f; float m_clipFar = 10000.0f; float m_horizontalMagnification = 1.0f; float m_verticalMagnification = 1.0f; }; QT_END_NAMESPACE #endif // QSSGORTHOGRAPHICCAMERA_H